mirror of https://github.com/jeecgboot/jeecg-boot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
6 years ago
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||
4 years ago
|
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">
|
||
6 years ago
|
<parent>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
2 years ago
|
<artifactId>jeecg-module-system</artifactId>
|
||
2 years ago
|
<version>3.4.0</version>
|
||
6 years ago
|
</parent>
|
||
4 years ago
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
2 years ago
|
<artifactId>jeecg-system-biz</artifactId>
|
||
6 years ago
|
|
||
|
<dependencies>
|
||
4 years ago
|
<dependency>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
|
<artifactId>jeecg-system-local-api</artifactId>
|
||
|
</dependency>
|
||
3 years ago
|
<dependency>
|
||
|
<groupId>org.hibernate</groupId>
|
||
|
<artifactId>hibernate-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
|
<artifactId>hibernate-re</artifactId>
|
||
|
</dependency>
|
||
|
|
||
3 years ago
|
<!-- 企业微信/钉钉 api -->
|
||
4 years ago
|
<dependency>
|
||
3 years ago
|
<groupId>org.jeecgframework</groupId>
|
||
|
<artifactId>jeewx-api</artifactId>
|
||
4 years ago
|
</dependency>
|
||
3 years ago
|
<!-- 积木报表 -->
|
||
|
<dependency>
|
||
|
<groupId>org.jeecgframework.jimureport</groupId>
|
||
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
3 years ago
|
<!-- DEMO 示例模块 -->
|
||
3 years ago
|
<dependency>
|
||
|
<groupId>org.jeecgframework.boot</groupId>
|
||
2 years ago
|
<artifactId>jeecg-module-demo</artifactId>
|
||
3 years ago
|
<version>${jeecgboot.version}</version>
|
||
3 years ago
|
</dependency>
|
||
|
|
||
6 years ago
|
</dependencies>
|
||
4 years ago
|
|
||
6 years ago
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
4 years ago
|
<configuration>
|
||
3 years ago
|
<!--SpringCloud运行环境 ,值改为true跳过SpringBoot启动打包插件 -->
|
||
3 years ago
|
<skip>${skip.springboot.maven}</skip>
|
||
4 years ago
|
</configuration>
|
||
6 years ago
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
2 years ago
|
</project>
|