8 changed files with 196 additions and 91 deletions
@ -0,0 +1,34 @@ |
|||
<?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"> |
|||
<modelVersion>4.0.0</modelVersion> |
|||
<parent> |
|||
<groupId>org.jeecgframework.boot</groupId> |
|||
<artifactId>jeecg-boot-parent</artifactId> |
|||
<version>3.6.1</version> |
|||
</parent> |
|||
|
|||
<artifactId>jeecg-module-activit</artifactId> |
|||
<packaging>pom</packaging> |
|||
<dependencies> |
|||
<dependency> |
|||
<groupId>org.jeecgframework.boot</groupId> |
|||
<artifactId>jeecg-boot-base-core</artifactId> |
|||
</dependency> |
|||
<dependency> |
|||
<groupId>org.activiti</groupId> |
|||
<artifactId>activiti-spring-boot-starter</artifactId> |
|||
<exclusions> |
|||
<exclusion> |
|||
<!-- 重点坑,不排除mybatis的话,在启动项目时会报错mybatisplus缺少类 --> |
|||
<artifactId>mybatis</artifactId> |
|||
<groupId>org.mybatis</groupId> |
|||
</exclusion> |
|||
</exclusions> |
|||
</dependency> |
|||
</dependencies> |
|||
|
|||
|
|||
|
|||
</project> |
@ -1,5 +1,5 @@ |
|||
spring: |
|||
application: |
|||
name: jeecg-system |
|||
name: 湖州市公立医院改革与高质量发展项目管理平台 |
|||
profiles: |
|||
active: '@profile.name@' |
Loading…
Reference in new issue