2 Star 0 Fork 244

benjobs / nutzboot

forked from Nutz / nutzboot 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.13 KB
一键复制 编辑 原始数据 按行查看 历史
<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-demo</module>
<module>nutzboot-starter-jetty</module>
<module>nutzboot-starter-undertow</module>
<module>nutzboot-starter-tomcat</module>
<module>nutzboot-starter-mqtt</module>
<module>nutzboot-starter-nutz-mvc</module>
<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>
<module>nutzboot-starter-jdbc</module>
<module>nutzboot-starter-nutz</module>
<module>nutzboot-starter-weixin</module>
<module>nutzboot-starter-quartz</module>
<module>nutzboot-starter-wkcache</module>
</modules>
<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>
<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>
<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>
Java
1
https://gitee.com/benjobs/nutzboot.git
git@gitee.com:benjobs/nutzboot.git
benjobs
nutzboot
nutzboot
master

搜索帮助