2021-09-05 22:46:01 +08:00
|
|
|
|
<?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>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-framework</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-activiti</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>${artifactId}</name>
|
|
|
|
|
<description>Activiti 拓展</description>
|
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<activiti.version>7.1.0.M6</activiti.version>
|
|
|
|
|
</properties>
|
2021-11-07 20:25:31 +08:00
|
|
|
|
<!-- TODO @jason:后续弄到 yudao-dependencies 里 -->
|
2021-10-13 23:43:03 +08:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.activiti.dependencies</groupId>
|
|
|
|
|
<artifactId>activiti-dependencies</artifactId>
|
|
|
|
|
<version>${activiti.version}</version>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2021-09-05 22:46:01 +08:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-common</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-01-07 00:35:12 +08:00
|
|
|
|
<!-- Web 相关 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-01-23 12:52:33 +08:00
|
|
|
|
<!-- DB 相关 -->
|
2021-09-05 22:46:01 +08:00
|
|
|
|
<dependency>
|
2022-01-23 12:52:33 +08:00
|
|
|
|
<groupId>cn.iocoder.boot</groupId>
|
|
|
|
|
<artifactId>yudao-spring-boot-starter-mybatis</artifactId>
|
2021-09-05 22:46:01 +08:00
|
|
|
|
</dependency>
|
2021-10-13 23:43:03 +08:00
|
|
|
|
|
2021-09-05 22:57:38 +08:00
|
|
|
|
<!--使用mybatis plus需排除掉mybatis-->
|
2021-09-05 22:46:01 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${activiti.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>de.odysseus.juel</groupId>
|
|
|
|
|
<artifactId>juel-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>de.odysseus.juel</groupId>
|
|
|
|
|
<artifactId>juel-spi</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
</exclusion>
|
2021-10-13 23:43:03 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>el-api</artifactId>
|
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
|
</exclusion>
|
2021-09-05 22:46:01 +08:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2021-11-05 17:13:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-image-generator</artifactId>
|
|
|
|
|
<version>${activiti.version}</version>
|
|
|
|
|
</dependency>
|
2022-01-07 00:35:12 +08:00
|
|
|
|
|
2021-09-05 22:46:01 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|