mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
b30ea1f70c
- cloudwalk.legacy.public.version=3.7.2:result/web/serial 仍走私服;event/service 用 4.0.0 - common: spring-web;CollectionUtils for-each Iterable 强转 - data: 反编译 DTO hashCode/import 修正(ImageRuleRef*、AcsElevatorDevice*) - docs/build/本地编译说明.md;Maven工作区修订表补充 legacy 说明 Made-with: Cursor
155 lines
6.4 KiB
XML
155 lines
6.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>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.18.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>cn.cloudwalk.intelligent</groupId>
|
|
<artifactId>intelligent-cwoscomponent-reactor</artifactId>
|
|
<version>3.0.0-xinghewan</version>
|
|
<packaging>pom</packaging>
|
|
<name>intelligent-cwoscomponent (Maven reactor)</name>
|
|
<description>聚合模块:interface → rest。原父 intelligent-cwoscomponent 缺失。</description>
|
|
|
|
<modules>
|
|
<module>intelligent-cwoscomponent-parent</module>
|
|
<module>intelligent-cwoscomponent-interface</module>
|
|
<module>intelligent-cwoscomponent-rest</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<spring-cloud.version>Greenwich.SR6</spring-cloud.version>
|
|
<cloudwalk.internal.version>4.0.0-Brussels-SRX</cloudwalk.internal.version>
|
|
<cloudwalk.legacy.public.version>3.7.2-Brussels-SRX</cloudwalk.legacy.public.version>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
<!-- 与 V1 运行包 lib 内 cloudwalk-device-sdk-protocol-entity-2.2.0.jar 一致 -->
|
|
<cloudwalk.device.sdk.version>2.2.0</cloudwalk.device.sdk.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>
|
|
</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-service</artifactId>
|
|
<version>${cloudwalk.internal.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk</groupId>
|
|
<artifactId>cloudwalk-device-sdk-protocol-entity</artifactId>
|
|
<version>${cloudwalk.device.sdk.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</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>
|