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>
|
2022-08-12 14:14:11 +08:00
|
|
|
<artifactId>jeecg-module-system</artifactId>
|
2022-08-06 17:02:37 +08:00
|
|
|
<version>3.4.0</version>
|
2019-05-19 18:54:09 +08:00
|
|
|
</parent>
|
2020-09-13 18:23:23 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-08-12 14:14:11 +08:00
|
|
|
<artifactId>jeecg-system-biz</artifactId>
|
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>
|
2022-05-19 23:55:49 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>hibernate-re</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2022-04-18 09:37:28 +08:00
|
|
|
<!-- 企业微信/钉钉 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>
|
2021-01-23 23:59:31 +08:00
|
|
|
</dependency>
|
2021-08-13 15:27:30 +08:00
|
|
|
<!-- 积木报表 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.jimureport</groupId>
|
|
|
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2022-04-18 09:37:28 +08:00
|
|
|
<!-- DEMO 示例模块 -->
|
2021-08-13 16:55:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
2022-08-12 14:14:11 +08:00
|
|
|
<artifactId>jeecg-module-demo</artifactId>
|
2022-04-18 09:37:28 +08:00
|
|
|
<version>${jeecgboot.version}</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-05-18 16:16:36 +08:00
|
|
|
<!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
|
2022-03-30 13:45:43 +08:00
|
|
|
<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>
|
2022-07-20 18:09:53 +08:00
|
|
|
</project>
|