115 lines
4.0 KiB
XML
115 lines
4.0 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.cloud.plugin</artifactId>
|
||
|
<groupId>com.bocloud</groupId>
|
||
|
<version>6.5.0-LTS-SZ</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>bocloud.smartx.plugin</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<gson-fire-version>1.8.5</gson-fire-version>
|
||
|
<okhttp-version>4.9.2</okhttp-version>
|
||
|
<gson-version>2.8.8</gson-version>
|
||
|
<commons-lang3-version>3.12.0</commons-lang3-version>
|
||
|
<jackson-databind-nullable-version>0.2.2</jackson-databind-nullable-version>
|
||
|
<threetenbp-version>1.5.0</threetenbp-version>
|
||
|
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<spotless.version>2.17.3</spotless.version>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.smartx.tower</groupId>
|
||
|
<artifactId>cloudtower-java-sdk</artifactId>
|
||
|
<version>2.8.0</version>
|
||
|
</dependency>
|
||
|
<!-- @Nullable annotation -->
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.findbugs</groupId>
|
||
|
<artifactId>jsr305</artifactId>
|
||
|
<version>3.0.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
<version>${okhttp-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>logging-interceptor</artifactId>
|
||
|
<version>${okhttp-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.gson</groupId>
|
||
|
<artifactId>gson</artifactId>
|
||
|
<version>${gson-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>io.gsonfire</groupId>
|
||
|
<artifactId>gson-fire</artifactId>
|
||
|
<version>${gson-fire-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>${commons-lang3-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.threeten</groupId>
|
||
|
<artifactId>threetenbp</artifactId>
|
||
|
<version>${threetenbp-version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>jakarta.annotation</groupId>
|
||
|
<artifactId>jakarta.annotation-api</artifactId>
|
||
|
<version>${jakarta-annotation-version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.openapitools</groupId>
|
||
|
<artifactId>jackson-databind-nullable</artifactId>
|
||
|
<version>${jackson-databind-nullable-version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<!--把当前项目所有的依赖打包到target目录下的lib文件夹下 -->
|
||
|
<plugin>
|
||
|
<groupId>com.gitee.starblues</groupId>
|
||
|
<artifactId>spring-brick-maven-packager</artifactId>
|
||
|
<configuration>
|
||
|
<mode>${plugin.build.mode}</mode>
|
||
|
<pluginInfo>
|
||
|
<id>smartx</id>
|
||
|
<bootstrapClass>com.bocloud.cloudtower.plugin.Application</bootstrapClass>
|
||
|
<version>6.5.0-LTS-SZ</version>
|
||
|
<provider>smartx</provider>
|
||
|
<description>smartx纳管插件</description>
|
||
|
<configFileName>application.yml</configFileName>
|
||
|
</pluginInfo>
|
||
|
<prodConfig>
|
||
|
<packageType>jar</packageType>
|
||
|
<fileName>${project.artifactId}-${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>
|