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.
93 lines
3.3 KiB
93 lines
3.3 KiB
6 years ago
|
<?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>
|
||
6 years ago
|
<artifactId>blade-ops</artifactId>
|
||
6 years ago
|
<groupId>org.springblade</groupId>
|
||
6 years ago
|
<version>2.0.0.RC9</version>
|
||
6 years ago
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
6 years ago
|
<artifactId>blade-flow</artifactId>
|
||
6 years ago
|
<name>${project.artifactId}</name>
|
||
|
<version>${bladex.project.version}</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
6 years ago
|
<!-- Blade -->
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-common</artifactId>
|
||
|
<version>${bladex.project.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-boot</artifactId>
|
||
|
<version>${bladex.tool.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-dict-api</artifactId>
|
||
|
<version>${bladex.project.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
6 years ago
|
<artifactId>blade-core-auto</artifactId>
|
||
|
<version>${bladex.tool.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-user-api</artifactId>
|
||
|
<version>${bladex.tool.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-flow-api</artifactId>
|
||
|
<version>${bladex.tool.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.mybatis</groupId>
|
||
|
<artifactId>mybatis-spring</artifactId>
|
||
|
<version>2.0.0</version>
|
||
|
</dependency>
|
||
6 years ago
|
<!-- 工作流 -->
|
||
|
<dependency>
|
||
|
<groupId>org.flowable</groupId>
|
||
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
||
|
<version>${flowable.version}</version>
|
||
6 years ago
|
</dependency>
|
||
6 years ago
|
<dependency>
|
||
|
<groupId>org.flowable</groupId>
|
||
6 years ago
|
<artifactId>flowable-json-converter</artifactId>
|
||
6 years ago
|
<version>${flowable.version}</version>
|
||
|
</dependency>
|
||
6 years ago
|
</dependencies>
|
||
|
|
||
6 years ago
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>run</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<tasks>
|
||
|
<copy overwrite="true"
|
||
|
tofile="${session.executionRootDirectory}/target/${artifactId}.jar"
|
||
|
file="${project.build.directory}/${artifactId}.jar" />
|
||
|
</tasks>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
6 years ago
|
</project>
|