mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
2cd9da61da
- 新增 cw-elevator-application-starter:repackage 产出 cw-elevator-application-2.0.0.jar - ElevatorApplication:Feign、MapperScan、Async、Cache、AOP、EnableCloudwalkEvent - 父 POM 引入 Spring Cloud Greenwich.SR6 BOM;service 使用 spring-cloud-starter-openfeign - 主类 Start-Class: cn.cloudwalk.elevator.ElevatorApplication Made-with: Cursor Former-commit-id: 2b89dcb5aab7c0f29a1068fc9839de99670f2789
290 lines
13 KiB
XML
290 lines
13 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>
|
||
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.1.18.RELEASE</version>
|
||
<relativePath/>
|
||
</parent>
|
||
|
||
<groupId>cn.cloudwalk.elevator</groupId>
|
||
<artifactId>cw-elevator-application-reactor</artifactId>
|
||
<version>2.0-SNAPSHOT</version>
|
||
<packaging>pom</packaging>
|
||
<name>cw-elevator-application (Maven reactor)</name>
|
||
<description>聚合模块:common → data → service → web。release/cw-elevator-v1-lib-min-risk:cloudwalk-common-service/event 与 V1 cw_lib 一致为 3.7.2;部分第三方与 cw-elevator-application-V1.0.0.20211103/lib 文件名对齐。对照目录见 cw.elevator.v1.lib.dir。</description>
|
||
|
||
<modules>
|
||
<module>cw-elevator-application-common</module>
|
||
<module>cw-elevator-application-data</module>
|
||
<module>cw-elevator-application-service</module>
|
||
<module>cw-elevator-application-web</module>
|
||
<module>cw-elevator-application-starter</module>
|
||
</modules>
|
||
|
||
<properties>
|
||
<java.version>1.8</java.version>
|
||
<!-- 与 V1 运行包 lib 目录内 JAR 文件名对齐,便于 install-file 或私服核对 -->
|
||
<cw.elevator.v1.lib.dir>${project.basedir}/../cw-elevator-application-V1.0.0.20211103/lib</cw.elevator.v1.lib.dir>
|
||
<!-- 与 V1.0.0.20211103/cw_lib 中 cloudwalk-common-* 一致,降低与历史运行包 API 差异 -->
|
||
<cloudwalk.internal.version>3.7.2-Brussels-SRX</cloudwalk.internal.version>
|
||
<cloudwalk.legacy.public.version>3.7.2-Brussels-SRX</cloudwalk.legacy.public.version>
|
||
<intelligent.cwoscomponent.version>3.0.0-xinghewan</intelligent.cwoscomponent.version>
|
||
<!-- 以下与 V1.0.0.20211103/lib 中 *.pom 主版本对齐(保持 Spring Boot 2.1.18 以兼容当前源码) -->
|
||
<fastjson.version>1.2.73</fastjson.version>
|
||
<guava.version>28.2-jre</guava.version>
|
||
<poi.version>4.1.2</poi.version>
|
||
<ant.version>1.10.12</ant.version>
|
||
<thumbnailator.version>0.4.8</thumbnailator.version>
|
||
<commons-io.version>2.5</commons-io.version>
|
||
<zip4j.version>2.6.2</zip4j.version>
|
||
<zxing.version>3.3.3</zxing.version>
|
||
<pagehelper.version>5.1.2</pagehelper.version>
|
||
<pagehelper-spring-boot.version>1.2.5</pagehelper-spring-boot.version>
|
||
<shardingsphere.version>4.0.0</shardingsphere.version>
|
||
<mybatis.version>3.5.6</mybatis.version>
|
||
<mybatis-spring.version>2.0.6</mybatis-spring.version>
|
||
<mybatis-spring-boot.version>2.0.1</mybatis-spring-boot.version>
|
||
<servlet-api.version>2.5</servlet-api.version>
|
||
<cwos.sdk.resource.version>1.0.0-SNAPSHOT</cwos.sdk.resource.version>
|
||
<intelligent.lock.version>1.1.1-SNAPSHOT</intelligent.lock.version>
|
||
<davinci.manager.storage.version>1.1.7-SNAPSHOT</davinci.manager.storage.version>
|
||
<!-- Nexus UI: http://192.168.3.12/#browse/welcome -->
|
||
<nexus.baseUrl>http://192.168.3.12</nexus.baseUrl>
|
||
<nexus.public.repo>${nexus.baseUrl}/repository/maven-public/</nexus.public.repo>
|
||
<formatter.maven.plugin.version>2.24.1</formatter.maven.plugin.version>
|
||
<alibaba.eclipse.codestyle.path>${project.basedir}/../docs/style/alibaba-eclipse-codestyle.xml</alibaba.eclipse.codestyle.path>
|
||
<!-- 与 Spring Boot 2.1.18 对齐的 OpenFeign/Cloud 版本(发布包可执行 JAR 需要) -->
|
||
<spring-cloud.version>Greenwich.SR6</spring-cloud.version>
|
||
<!-- spring-boot-maven-plugin repackage 产出的可执行 JAR 文件名(不含 .jar) -->
|
||
<elevator.release.finalName>cw-elevator-application-2.0.0</elevator.release.finalName>
|
||
</properties>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<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>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-result</artifactId>
|
||
<version>${cloudwalk.legacy.public.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-web</artifactId>
|
||
<version>${cloudwalk.legacy.public.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-service</artifactId>
|
||
<version>${cloudwalk.internal.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-event</artifactId>
|
||
<version>${cloudwalk.internal.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.cloud</groupId>
|
||
<artifactId>cloudwalk-common-serial</artifactId>
|
||
<version>${cloudwalk.legacy.public.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.intelligent</groupId>
|
||
<artifactId>intelligent-cwoscomponent-rest</artifactId>
|
||
<version>${intelligent.cwoscomponent.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk</groupId>
|
||
<artifactId>cwos-java-sdk-resource</artifactId>
|
||
<version>${cwos.sdk.resource.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.intelligent</groupId>
|
||
<artifactId>cloudwalk-intelligent-component-lock</artifactId>
|
||
<version>${intelligent.lock.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.intelligent</groupId>
|
||
<artifactId>davinci-manager-storage</artifactId>
|
||
<version>${davinci.manager.storage.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>${guava.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>${poi.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>${poi.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.ant</groupId>
|
||
<artifactId>ant</artifactId>
|
||
<version>${ant.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.coobird</groupId>
|
||
<artifactId>thumbnailator</artifactId>
|
||
<version>${thumbnailator.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>${commons-io.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>${fastjson.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>net.lingala.zip4j</groupId>
|
||
<artifactId>zip4j</artifactId>
|
||
<version>${zip4j.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.zxing</groupId>
|
||
<artifactId>core</artifactId>
|
||
<version>${zxing.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper</artifactId>
|
||
<version>${pagehelper.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
|
||
<version>${pagehelper-spring-boot.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.shardingsphere</groupId>
|
||
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
|
||
<version>${shardingsphere.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis</artifactId>
|
||
<version>${mybatis.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis-spring</artifactId>
|
||
<version>${mybatis-spring.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mybatis.spring.boot</groupId>
|
||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
<version>${mybatis-spring-boot.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>servlet-api</artifactId>
|
||
<version>${servlet-api.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.el</groupId>
|
||
<artifactId>javax.el-api</artifactId>
|
||
<version>3.0.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.glassfish</groupId>
|
||
<artifactId>javax.el</artifactId>
|
||
<version>3.0.0</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>nexus-public</id>
|
||
<name>Nexus maven-public</name>
|
||
<url>${nexus.public.repo}</url>
|
||
<releases>
|
||
<enabled>true</enabled>
|
||
</releases>
|
||
<snapshots>
|
||
<enabled>true</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<pluginRepositories>
|
||
<pluginRepository>
|
||
<id>nexus-public-plugins</id>
|
||
<name>Nexus maven-public</name>
|
||
<url>${nexus.public.repo}</url>
|
||
<releases>
|
||
<enabled>true</enabled>
|
||
</releases>
|
||
<snapshots>
|
||
<enabled>true</enabled>
|
||
</snapshots>
|
||
</pluginRepository>
|
||
</pluginRepositories>
|
||
|
||
<build>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>net.revelc.code.formatter</groupId>
|
||
<artifactId>formatter-maven-plugin</artifactId>
|
||
<version>${formatter.maven.plugin.version}</version>
|
||
<configuration>
|
||
<configFile>${alibaba.eclipse.codestyle.path}</configFile>
|
||
<lineEnding>LF</lineEnding>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-enforcer-plugin</artifactId>
|
||
<version>3.4.1</version>
|
||
<executions>
|
||
<execution>
|
||
<id>enforce-jdk8</id>
|
||
<goals>
|
||
<goal>enforce</goal>
|
||
</goals>
|
||
<configuration>
|
||
<rules>
|
||
<requireJavaVersion>
|
||
<version>[1.8,1.9)</version>
|
||
<message>与原始运行包一致须使用 JDK 8 启动 Maven;见 docs/build/ORIGINAL_BUILD_JDK.txt</message>
|
||
</requireJavaVersion>
|
||
</rules>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|