88 lines
3.4 KiB
XML
88 lines
3.4 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>bocloud.fms</artifactId>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<version>6.5.0-LTS-SZ</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>bocloud.fms.booter</artifactId>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.fms.service</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.gitee.starblues</groupId>
|
||
|
<artifactId>spring-brick-bootstrap</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<artifactId>bocloud.cos.booter</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.11.0</version>
|
||
|
<configuration>
|
||
|
<parameters>true</parameters>
|
||
|
<source>21</source>
|
||
|
<target>21</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>default-jar</id>
|
||
|
<phase>none</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>com.gitee.starblues</groupId>
|
||
|
<artifactId>spring-brick-maven-packager</artifactId>
|
||
|
<version>${spring-brick.version}</version>
|
||
|
<configuration>
|
||
|
<mode>${plugin.build.mode}</mode>
|
||
|
<pluginInfo>
|
||
|
<id>fms</id>
|
||
|
<bootstrapClass>com.bocloud.fms.Application</bootstrapClass>
|
||
|
<version>${project.version}</version>
|
||
|
<provider>BoCloud</provider>
|
||
|
<description>流程服务</description>
|
||
|
<configFileName>application.yml</configFileName>
|
||
|
</pluginInfo>
|
||
|
<prodConfig>
|
||
|
<packageType>jar</packageType>
|
||
|
<fileName>bocloud.fms.plugin-${project.version}</fileName>
|
||
|
</prodConfig>
|
||
|
<encryptConfig>
|
||
|
<aes>
|
||
|
<secretKey>mmfvXes1XckCi8F/y9i0uQ==</secretKey>
|
||
|
</aes>
|
||
|
</encryptConfig>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|