2019-05-19 18:54:09 +08:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-11-28 17:20:10 +08:00
|
|
|
|
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">
|
2019-05-19 18:54:09 +08:00
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
2022-02-24 15:13:05 +08:00
|
|
|
|
<version>3.1.0</version>
|
2019-05-19 18:54:09 +08:00
|
|
|
|
</parent>
|
2020-09-13 18:23:23 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>jeecg-boot-module-system</artifactId>
|
2019-05-19 18:54:09 +08:00
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>aliyun</id>
|
|
|
|
|
<name>aliyun Repository</name>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
2019-05-19 18:54:09 +08:00
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jeecg</id>
|
|
|
|
|
<name>jeecg Repository</name>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
2019-05-19 18:54:09 +08:00
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
2020-09-13 18:23:23 +08:00
|
|
|
|
|
2019-05-19 18:54:09 +08:00
|
|
|
|
<dependencies>
|
2020-09-13 18:23:23 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-system-local-api</artifactId>
|
|
|
|
|
</dependency>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<!-- jeewx api -->
|
2021-01-23 23:59:31 +08:00
|
|
|
|
<dependency>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<groupId>org.jeecgframework</groupId>
|
|
|
|
|
<artifactId>jeewx-api</artifactId>
|
2022-02-24 15:13:05 +08:00
|
|
|
|
<version>1.4.7</version>
|
2021-01-23 23:59:31 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
2021-01-23 23:59:31 +08:00
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
<!-- 积木报表 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.jimureport</groupId>
|
|
|
|
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
2022-03-30 13:45:43 +08:00
|
|
|
|
<version>1.4.4-beta</version>
|
2021-08-13 15:27:30 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2021-08-13 16:55:43 +08:00
|
|
|
|
|
|
|
|
|
<!-- DEMO 示例模块【微服务启动请注释掉】 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
|
<artifactId>jeecg-boot-module-demo</artifactId>
|
2022-02-24 15:13:05 +08:00
|
|
|
|
<version>3.1.0</version>
|
2021-08-13 16:55:43 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2019-05-19 18:54:09 +08:00
|
|
|
|
</dependencies>
|
2020-11-28 17:20:10 +08:00
|
|
|
|
|
2019-05-20 10:53:56 +08:00
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2020-11-28 17:20:10 +08:00
|
|
|
|
<configuration>
|
2022-03-30 13:45:43 +08:00
|
|
|
|
<!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
|
|
|
|
|
<skip>${skip.springboot.maven}</skip>
|
2020-11-28 17:20:10 +08:00
|
|
|
|
</configuration>
|
2019-05-20 10:53:56 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2019-05-19 18:54:09 +08:00
|
|
|
|
</project>
|