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.
88 lines
3.1 KiB
88 lines
3.1 KiB
<?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>tech.abc</groupId>
|
|
<artifactId>abc-development-platform</artifactId>
|
|
<version>5.1.0</version>
|
|
</parent>
|
|
<groupId>tech.abc</groupId>
|
|
<artifactId>platform-workflow</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>5.1.0</version>
|
|
<name>platform-workflow</name>
|
|
<description>工作流</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>tech.abc</groupId>
|
|
<artifactId>platform-system</artifactId>
|
|
</dependency>
|
|
<!-- 工作流 -->
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
|
|
<version>7.19.0</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>mybatis</artifactId>
|
|
<groupId>org.mybatis</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!--单元测试-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.junit.vintage</groupId>
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<!--处理mybatis的mapper.xml文件-->
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</resource>
|
|
<!--处理其他资源文件-->
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<includes>
|
|
<!--系统配置文件-->
|
|
<include>*.yml</include>
|
|
<!--excel模板-->
|
|
<include>**/*.xlsx</include>
|
|
<!--其他配置文件-->
|
|
<include>*.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|
|
|