53 lines
1.6 KiB
XML
53 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>net.tccn</groupId>
|
|
<artifactId>zhub-cli</artifactId>
|
|
<version>1.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>2.5.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.8.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!--<repositories>
|
|
<repository>
|
|
<id>maven-nexus</id>
|
|
<name>maven-nexus</name>
|
|
<url>http://47.106.237.198:8081/repository/maven-public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>mvn-release</id>
|
|
<name>mvn-release</name>
|
|
<url>http://47.106.237.198:8081/repository/maven-releases/</url>
|
|
</repository>
|
|
</distributionManagement>-->
|
|
|
|
</project> |