2017-11-05 22:07:39 +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>
|
2017-11-23 14:42:14 +08:00
|
|
|
<artifactId>nutzboot-demo-simple</artifactId>
|
2018-09-19 13:13:43 +08:00
|
|
|
<version>2.3-SNAPSHOT</version>
|
2017-11-05 22:07:39 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>nutzboot-demo-simple-dao</artifactId>
|
2018-01-18 17:40:07 +08:00
|
|
|
<properties>
|
|
|
|
<docker.image.prefix>nutzboot</docker.image.prefix>
|
|
|
|
</properties>
|
2017-11-05 22:07:39 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
2017-11-30 23:37:42 +08:00
|
|
|
<artifactId>nutzboot-starter-nutz-mvc</artifactId>
|
2017-11-05 22:07:39 +08:00
|
|
|
</dependency>
|
2018-01-25 11:40:09 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-starter-nutz-dao</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-starter-jdbc</artifactId>
|
|
|
|
</dependency>
|
2017-11-05 22:07:39 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-starter-jetty</artifactId>
|
|
|
|
</dependency>
|
2017-12-28 11:23:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.nutz</groupId>
|
|
|
|
<artifactId>nutzboot-starter-swagger</artifactId>
|
|
|
|
</dependency>
|
2017-11-05 22:07:39 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.4.196</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|