174 lines
7.4 KiB
XML
174 lines
7.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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.qc.soft</groupId>
|
|
<artifactId>deploy-ease-parent</artifactId>
|
|
<version>${version}</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<deploy-ease-tenant-adapter.version>${adapter-revision}</deploy-ease-tenant-adapter.version>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spring.cloud.version>Hoxton.SR12</spring.cloud.version>
|
|
<spring.boot.version>2.3.0.RELEASE</spring.boot.version>
|
|
<freemarker.version>2.3.31</freemarker.version>
|
|
<fastjson-version>2.0.51</fastjson-version>
|
|
<mapstruct.version>1.6.0.RC1</mapstruct.version>
|
|
<lombok.version>1.18.22</lombok.version>
|
|
<mysql.version>8.0.23</mysql.version>
|
|
<druid.version>1.1.10</druid.version>
|
|
<spring-statemachine.version>3.2.1</spring-statemachine.version>
|
|
<reactor-core.version>3.6.2</reactor-core.version>
|
|
<transmittable-thread-local.version>2.14.5</transmittable-thread-local.version>
|
|
<http5.version>5.3.1</http5.version>
|
|
<commons-lang3.version>3.10</commons-lang3.version>
|
|
<hutool.version>5.8.16</hutool.version>
|
|
<kubernetes.version>19.0.1</kubernetes.version>
|
|
<okhttp3.version>4.9.1</okhttp3.version>
|
|
<nacos-client.version>2.3.0</nacos-client.version>
|
|
<nacos-cloud.version>2.2.9.RELEASE</nacos-cloud.version>
|
|
<flatten-maven-plugin.version>1.6.0</flatten-maven-plugin.version>
|
|
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
|
|
<commons-pool2.version>2.6.2</commons-pool2.version>
|
|
</properties>
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>${commons-pool2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
<version>${spring.cloud.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version> <!-- 检查最新版本 -->
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
<version>${nacos-cloud.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
<version>${nacos-cloud.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
<artifactId>nacos-client</artifactId>
|
|
<version>${nacos-client.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qc.soft</groupId>
|
|
<artifactId>deploy-ease-tenant-adapter</artifactId>
|
|
<version>${deploy-ease-tenant-adapter.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>transmittable-thread-local</artifactId>
|
|
<version>${transmittable-thread-local.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>${http5.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>${fastjson-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>${commons-lang3.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>${release.repository.id}</id>
|
|
<name>${release.repository.name}</name>
|
|
<url>${release.repository.url}</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>${snapshot.repository.id}</id>
|
|
<name>${snapshot.repository.name}</name>
|
|
<url>${snapshot.repository.url}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<version>${flatten-maven-plugin.version}</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>2.6.0</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
<configuration>
|
|
<updatePomFile>true</updatePomFile>
|
|
<flattenMode>resolveCiFriendliesOnly</flattenMode>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>flatten</id>
|
|
<phase>process-resources</phase>
|
|
<goals>
|
|
<goal>flatten</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>flatten-clean</id>
|
|
<phase>clean</phase>
|
|
<goals>
|
|
<goal>clean</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<modules>
|
|
<module>deploy-ease-basic</module>
|
|
<module>deploy-ease-api</module>
|
|
<module>deploy-ease-core</module>
|
|
<module>deploy-ease-tenant-adapter</module>
|
|
</modules>
|
|
</project> |