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.
131 lines
5.1 KiB
131 lines
5.1 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>
|
||
|
<artifactId>blade-ops</artifactId>
|
||
|
<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-design</artifactId>
|
||
6 years ago
|
<name>${project.artifactId}</name>
|
||
|
<version>${bladex.project.version}</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
6 years ago
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-launch</artifactId>
|
||
|
<version>${bladex.tool.version}</version>
|
||
6 years ago
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.sourceforge.nekohtml</groupId>
|
||
|
<artifactId>nekohtml</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.liquibase</groupId>
|
||
|
<artifactId>liquibase-core</artifactId>
|
||
6 years ago
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-core</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>ch.qos.logback</groupId>
|
||
|
<artifactId>logback-classic</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
6 years ago
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.flowable</groupId>
|
||
6 years ago
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
||
6 years ago
|
<version>${flowable.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.flowable</groupId>
|
||
|
<artifactId>flowable-ui-modeler-rest</artifactId>
|
||
|
<version>${flowable.version}</version>
|
||
6 years ago
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-slf4j-impl</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.apache.logging.log4j</groupId>
|
||
|
<artifactId>log4j-core</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>jul-to-slf4j</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
6 years ago
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
<version>8.0.15</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.alibaba</groupId>
|
||
|
<artifactId>druid-spring-boot-starter</artifactId>
|
||
|
<version>1.1.16</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>com.spotify</groupId>
|
||
|
<artifactId>docker-maven-plugin</artifactId>
|
||
|
<version>${docker.plugin.version}</version>
|
||
|
<configuration>
|
||
|
<imageName>${docker.registry.url}/blade/${project.artifactId}:${project.version}</imageName>
|
||
|
<dockerDirectory>${project.basedir}</dockerDirectory>
|
||
|
<dockerHost>${docker.registry.host}</dockerHost>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<targetPath>/</targetPath>
|
||
|
<directory>${project.build.directory}</directory>
|
||
|
<include>${project.build.finalName}.jar</include>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<registryUrl>${docker.registry.url}</registryUrl>
|
||
|
<serverId>${docker.registry.url}</serverId>
|
||
|
<pushImage>true</pushImage>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
6 years ago
|
<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>
|
||
6 years ago
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|