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>
|
2018-01-10 14:47:50 +08:00
|
|
|
<version>2.2-SNAPSHOT</version>
|
2017-10-30 10:47:56 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>nutzboot-starter</artifactId>
|
2018-01-03 12:56:54 +08:00
|
|
|
<packaging>pom</packaging>
|
2017-11-21 23:39:51 +08:00
|
|
|
<name>nutzboot-starter</name>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2018-01-03 12:56:54 +08:00
|
|
|
<scm>
|
2017-11-21 23:39:51 +08:00
|
|
|
<connection>scm:git:git://github.com/nutzam/nutzboot.git</connection>
|
|
|
|
<developerConnection>scm:git:git://github.com/nutzam/nutzboot.git</developerConnection>
|
|
|
|
<url>git://github.com/nutzam/nutzboot.git</url>
|
|
|
|
</scm>
|
2018-01-03 12:56:54 +08:00
|
|
|
<modules>
|
|
|
|
<module>nutzboot-starter-beetlsql</module>
|
|
|
|
<module>nutzboot-starter-jetty</module>
|
|
|
|
<module>nutzboot-starter-undertow</module>
|
|
|
|
<module>nutzboot-starter-tomcat</module>
|
|
|
|
<module>nutzboot-starter-nutz-dao</module>
|
|
|
|
<module>nutzboot-starter-swagger</module>
|
|
|
|
<module>nutzboot-starter-mongodb</module>
|
|
|
|
<module>nutzboot-starter-jdbc</module>
|
|
|
|
<module>nutzboot-starter-weixin</module>
|
|
|
|
<module>nutzboot-starter-quartz</module>
|
|
|
|
<module>nutzboot-starter-wkcache</module>
|
|
|
|
<module>nutzboot-starter-redis</module>
|
|
|
|
<module>nutzboot-starter-disque</module>
|
|
|
|
<module>nutzboot-starter-beetl</module>
|
|
|
|
<module>nutzboot-starter-jetx</module>
|
|
|
|
<module>nutzboot-starter-sharding-jdbc</module>
|
|
|
|
<module>nutzboot-starter-thymeleaf</module>
|
|
|
|
<module>nutzboot-starter-zkclient</module>
|
|
|
|
<module>nutzboot-starter-velocity</module>
|
|
|
|
<module>nutzboot-starter-cxf</module>
|
|
|
|
<module>nutzboot-starter-feign</module>
|
|
|
|
<module>nutzboot-starter-caffeine</module>
|
|
|
|
<module>nutzboot-starter-hystrix</module>
|
|
|
|
|
|
|
|
<module>nutzboot-starter-nutz-mvc</module>
|
|
|
|
<module>nutzboot-starter-shiro</module>
|
|
|
|
<module>nutzboot-starter-dubbo</module>
|
|
|
|
<module>nutzboot-starter-zbus</module>
|
2018-01-05 14:20:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
<module>nutzboot-starter-eureka-client</module>
|
|
|
|
<module>nutzboot-starter-eureka-server</module>
|
2018-01-09 10:51:28 +08:00
|
|
|
<module>nutzboot-starter-rabbitmq</module>
|
2018-01-12 11:43:07 +08:00
|
|
|
<module>nutzboot-starter-tio</module>
|
2018-01-14 21:08:05 +08:00
|
|
|
<module>nutzboot-starter-apollo-client</module>
|
2018-01-18 12:45:23 +08:00
|
|
|
<module>nutzboot-starter-config-client</module>
|
2018-01-20 15:51:40 +08:00
|
|
|
<module>nutzboot-starter-j2cache</module>
|
2018-02-04 15:22:06 +08:00
|
|
|
<module>nutzboot-starter-freemarker</module>
|
2018-02-06 12:29:11 +08:00
|
|
|
<module>nutzboot-starter-tio-mvc</module>
|
2018-02-25 00:10:28 +08:00
|
|
|
<module>nutzboot-starter-web3j</module>
|
2018-01-14 21:08:05 +08:00
|
|
|
</modules>
|
2017-11-02 23:27:34 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
2018-01-03 12:56:54 +08:00
|
|
|
<artifactId>nutzboot-core</artifactId>
|
2017-11-02 23:27:34 +08:00
|
|
|
</dependency>
|
2018-01-03 12:56:54 +08:00
|
|
|
</dependencies>
|
2017-10-30 10:47:56 +08:00
|
|
|
</project>
|