2017-10-30 10:47:56 +08:00
|
|
|
<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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-parent</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<artifactId>nutzboot-starter</artifactId>
|
2017-11-02 23:27:34 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutz</artifactId>
|
2017-11-19 22:02:50 +08:00
|
|
|
<version>1.r.65-SNAPSHOT</version>
|
2017-11-02 23:27:34 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<version>1.19</version>
|
|
|
|
</dependency>
|
2017-11-04 22:33:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
</dependency>
|
2017-11-20 11:15:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
2017-11-02 23:27:34 +08:00
|
|
|
</dependencies>
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>nutzcn-snapshots</id>
|
|
|
|
<name>NutzCN snapshot repository</name>
|
|
|
|
<url>https://jfrog.nutz.cn/artifactory/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>sonatype-release-staging</id>
|
|
|
|
<name>Sonatype Nexus release repository</name>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2017-11-09 13:42:43 +08:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2017-10-30 10:47:56 +08:00
|
|
|
</project>
|