59 lines
1.6 KiB
XML
59 lines
1.6 KiB
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">
|
|
<parent>
|
|
<artifactId>lenosp</artifactId>
|
|
<groupId>com.len</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>len-web</artifactId>
|
|
<name>len-web Maven Webapp</name>
|
|
<url>http://maven.apache.org</url>
|
|
<packaging>war</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<!--生成代码插件-->
|
|
<dependency>
|
|
<groupId>org.mybatis.generator</groupId>
|
|
<artifactId>mybatis-generator-core</artifactId>
|
|
<version>1.3.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.len</groupId>
|
|
<artifactId>len-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.len</groupId>
|
|
<artifactId>len-sys</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.len</groupId>
|
|
<artifactId>len-activiti</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>len-web</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<!--<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>2.6</version>
|
|
</plugin>-->
|
|
</plugins>
|
|
|
|
</build>
|
|
</project>
|