81 lines
2.8 KiB
XML
81 lines
2.8 KiB
XML
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
<parent>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|||
|
<version>2.5.5</version>
|
|||
|
<relativePath/> <!-- lookup parent from repository -->
|
|||
|
</parent>
|
|||
|
<groupId>cn.whai.activiti</groupId>
|
|||
|
<artifactId>Activiti7Demo</artifactId>
|
|||
|
<version>0.0.1-SNAPSHOT</version>
|
|||
|
<name>Activiti7Demo</name>
|
|||
|
<description>Activiti7Demo Springboot</description>
|
|||
|
<properties>
|
|||
|
<java.version>1.8</java.version>
|
|||
|
</properties>
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter-web</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<dependency>
|
|||
|
<groupId>org.projectlombok</groupId>
|
|||
|
<artifactId>lombok</artifactId>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter-test</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<!-- Activiti 7.x依赖 -->
|
|||
|
<dependency>
|
|||
|
<groupId>org.activiti</groupId>
|
|||
|
<artifactId>activiti-spring-boot-starter</artifactId>
|
|||
|
<version>7.0.0.GA</version>
|
|||
|
<!-- 由于activiti7是使用mybatis作为orm框架,我这里整合mybatis-plus,所以需要排除mybatis -->
|
|||
|
<exclusions>
|
|||
|
<exclusion>
|
|||
|
<groupId>org.mybatis</groupId>
|
|||
|
<artifactId>mybatis</artifactId>
|
|||
|
</exclusion>
|
|||
|
</exclusions>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<!-- mysql 驱动 -->
|
|||
|
<dependency>
|
|||
|
<groupId>mysql</groupId>
|
|||
|
<artifactId>mysql-connector-java</artifactId>
|
|||
|
</dependency>
|
|||
|
|
|||
|
<!-- MyBatis-Plus依赖包 -->
|
|||
|
<dependency>
|
|||
|
<groupId>com.baomidou</groupId>
|
|||
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|||
|
<version>3.4.0</version>
|
|||
|
</dependency>
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<excludes>
|
|||
|
<exclude>
|
|||
|
<groupId>org.projectlombok</groupId>
|
|||
|
<artifactId>lombok</artifactId>
|
|||
|
</exclude>
|
|||
|
</excludes>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
</build>
|
|||
|
|
|||
|
</project>
|
|||
|
|