119 lines
3.9 KiB
XML
119 lines
3.9 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>xjrsoft-service</artifactId>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>xjrsoft-service-workflow</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<artifactId>xjrsoft-service-workflow-api</artifactId>
|
|
<version>${xjrsoft.framework.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<artifactId>xjrsoft-common-core</artifactId>
|
|
<version>${xjrsoft.framework.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<artifactId>xjrsoft-common-mybatis</artifactId>
|
|
<version>${xjrsoft.framework.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<artifactId>xjrsoft-service-form-api</artifactId>
|
|
<version>${xjrsoft.framework.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.xjrsoft</groupId>-->
|
|
<!-- <artifactId>xjrsoft-service-organization-api</artifactId>-->
|
|
<!-- <version>${xjrsoft.framework.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.xjrsoft</groupId>-->
|
|
<!-- <artifactId>xjrsoft-service-system-api</artifactId>-->
|
|
<!-- <version>${xjrsoft.framework.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>com.xjrsoft</groupId>
|
|
<artifactId>xjrsoft-service-app-api</artifactId>
|
|
<version>${xjrsoft.framework.version}</version>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.xjrsoft</groupId>-->
|
|
<!-- <artifactId>xjrsoft-service-magicapi-api</artifactId>-->
|
|
<!-- <version>${xjrsoft.framework.version}</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-loadbalancer</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.camunda.bpm.springboot</groupId>
|
|
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
</dependency>
|
|
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.ssssssss</groupId>-->
|
|
<!-- <artifactId>magic-api-spring-boot-starter</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |