nutzboot/nutzboot-demo/pom.xml
wendal chen 8f94fb9d34 change: 将starter-nutz-dao拆分为nutz-dao和jdbc两个starter
add: 新增starter-nutz,用于一次性导入nutz-mvc,nutz-dao,jdbc
add: maker的页面写好了,虽然很丑
2017-11-07 13:11:50 +08:00

25 lines
829 B
XML

<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>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>nutzboot-demo</artifactId>
<packaging>pom</packaging>
<modules>
<module>nutzboot-demo-simple</module>
<module>nutzboot-demo-simple-dao</module>
<module>nutzboot-demo-maker</module>
</modules>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>org.nutz</groupId>
<artifactId>nutzboot-starter</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>