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.
231 lines
8.5 KiB
231 lines
8.5 KiB
<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>
|
|
|
|
<groupId>com.example.workflow</groupId>
|
|
<artifactId>camunda</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>2.5.4</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.bpm</groupId>
|
|
<artifactId>camunda-bom</artifactId>
|
|
<version>7.15.0</version>
|
|
<scope>import</scope>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<!-- groovy -->
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>2.4.21</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy.modules.http-builder</groupId>
|
|
<artifactId>http-builder</artifactId>
|
|
<version>0.7.1</version>
|
|
</dependency>
|
|
<!-- camunda rest api -->
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
|
|
<version>7.15.0</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- spin-->
|
|
<dependency>
|
|
<groupId>org.camunda.spin</groupId>
|
|
<artifactId>camunda-spin-dataformat-all</artifactId>
|
|
<version>1.9.0</version>
|
|
</dependency>
|
|
|
|
<!-- camunda rest openapi-->
|
|
<!-- http://localhost:11001/swagger.json -->
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.extension.swagger</groupId>
|
|
<artifactId>camunda-bpm-swagger-json</artifactId>
|
|
<version>7.8.0</version>
|
|
</dependency>
|
|
<!-- camunda swagger-->
|
|
<!-- http://localhost:11001/webjars/swagger-ui/3.20.9/index.html?docExpansion=false&url=/swagger.json -->
|
|
<dependency>
|
|
<groupId>org.webjars</groupId>
|
|
<artifactId>swagger-ui</artifactId>
|
|
<version>${swagger-ui.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.webjars.bower</groupId>
|
|
<artifactId>swagger-ui-themes</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${springfox.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${springfox.version}</version>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.github.xiaoymin</groupId>-->
|
|
<!-- <artifactId>knife4j-spring-boot-starter</artifactId>-->
|
|
<!-- <version>2.0.3</version>-->
|
|
<!-- </dependency>-->
|
|
<!-- HTTP 连接器-->
|
|
<dependency>
|
|
<groupId>org.camunda.connect</groupId>
|
|
<artifactId>camunda-connect-bom</artifactId>
|
|
<version>1.5.2</version>
|
|
<scope>import</scope>
|
|
<type>pom</type>
|
|
</dependency>
|
|
<!-- 邮件连接器-->
|
|
<!-- <dependency>
|
|
<groupId>org.camunda.bpm.extension</groupId>
|
|
<artifactId>camunda-bpm-mail-core</artifactId>
|
|
<version>1.3.1-SNAPSHOT</version>
|
|
</dependency>-->
|
|
<!-- 全局监听连接器-->
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.extension.reactor</groupId>
|
|
<artifactId>camunda-bpm-reactor-spring-starter</artifactId>
|
|
<version>2.1.2</version>
|
|
</dependency>
|
|
<!-- 连接器基础包-->
|
|
<dependency>
|
|
<groupId>org.camunda.connect</groupId>
|
|
<artifactId>camunda-connect-core</artifactId>
|
|
<version>1.5.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.camunda.connect</groupId>
|
|
<artifactId>camunda-connect-connectors-all</artifactId>
|
|
<version>1.5.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.camunda.bpm</groupId>
|
|
<artifactId>camunda-engine-plugin-connect</artifactId>
|
|
<version>7.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
|
|
<version>7.15.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>42.5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
<version>1.2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.78</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<version>2.5.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.13.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.bpm</groupId>
|
|
<artifactId>camunda-engine-plugin-spin</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.spin</groupId>
|
|
<artifactId>camunda-spin-dataformat-all</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.bpm</groupId>
|
|
<artifactId>camunda-external-task-client</artifactId>
|
|
<version>7.15.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|
|
|