45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
|||
|
<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>jeecg-module-system</artifactId>
|
|||
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|||
|
<version>3.5.3</version>
|
|||
|
</parent>
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|||
|
<artifactId>cwgx-lqfw-start</artifactId>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<!-- SYSTEM 系统管理模块 -->
|
|||
|
<dependency>
|
|||
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|||
|
<artifactId>jeecg-system-biz</artifactId>
|
|||
|
<version>${jeecgboot.version}</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>org.jeecgframework.boot.lqfw</groupId>
|
|||
|
<artifactId>jeecg-module-lqfw</artifactId>
|
|||
|
<version>${jeecgboot.version}</version>
|
|||
|
</dependency>
|
|||
|
|
|||
|
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<!-- maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar -->
|
|||
|
<includeSystemScope>true</includeSystemScope>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
</build>
|
|||
|
|
|||
|
</project>
|