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>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-parent</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>nutzboot-starter</module>
|
|
|
|
<module>nutzboot-starter-jetty</module>
|
|
|
|
<module>nutzboot-starter-undertow</module>
|
|
|
|
<module>nutzboot-starter-tomcat</module>
|
|
|
|
<module>nutzboot-starter-mqtt</module>
|
2017-11-04 22:33:25 +08:00
|
|
|
<module>nutzboot-starter-nutz-mvc</module>
|
2017-11-04 22:44:35 +08:00
|
|
|
<module>nutzboot-starter-shiro</module>
|
|
|
|
<module>nutzboot-starter-grpc</module>
|
|
|
|
<module>nutzboot-starter-dubbo</module>
|
|
|
|
<module>nutzboot-starter-zbus</module>
|
|
|
|
<module>nutzboot-starter-nutz-dao</module>
|
|
|
|
<module>nutzboot-starter-swagger</module>
|
|
|
|
<module>nutzboot-starter-hasor</module>
|
|
|
|
<module>nutzboot-starter-jedis</module>
|
|
|
|
<module>nutzboot-starter-mongodb</module>
|
|
|
|
<module>nutzboot-starter-ngrok</module>
|
|
|
|
<module>nutzboot-starter-cfx</module>
|
|
|
|
<module>nutzboot-starter-rabbitmq</module>
|
2017-11-07 13:11:50 +08:00
|
|
|
<module>nutzboot-starter-jdbc</module>
|
|
|
|
<module>nutzboot-starter-nutz</module>
|
2017-11-07 17:01:50 +08:00
|
|
|
<module>nutzboot-demo</module>
|
2017-11-09 13:42:43 +08:00
|
|
|
<module>nutzboot-start-weixin</module>
|
2017-10-30 10:47:56 +08:00
|
|
|
</modules>
|
2017-11-06 10:19:38 +08:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>nutz</id>
|
|
|
|
<url>https://jfrog.nutz.cn/artifactory/jcenter</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>nutz-snapshots</id>
|
|
|
|
<url>https://jfrog.nutz.cn/artifactory/snapshots</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2017-10-30 10:47:56 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.3</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-parameters</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.3</version>
|
|
|
|
<configuration>
|
|
|
|
<additionalparam>-Xdoclint:none</additionalparam>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-11-06 10:19:38 +08:00
|
|
|
|
2017-10-30 10:47:56 +08:00
|
|
|
<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>
|
|
|
|
</project>
|