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>
|
2017-12-24 22:25:11 +08:00
|
|
|
<version>2.1-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>
|
|
|
|
|
|
|
|
|
|
|
|
</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>
|