mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-10 00:40:30 +08:00
18810ef9c6
- Reactor POM with 4 sub-modules (interface/data/service/web) - all-lib/ with 255 extracted JARs from original fat JAR - .m2-isolated/ repo with 252 installed JARs - interface module: BUILD SUCCESS (325 classes) - data module: BUILD SUCCESS (120 classes) - service module: 200 type errors (CFR decompilation artifacts) - install-libs.sh for isolated repo setup - Feign fallback inner classes separated
20 lines
2.6 KiB
XML
20 lines
2.6 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>cn.cloudwalk.ninca</groupId><artifactId>ninca-common-component-organization-reactor</artifactId><version>2.9.2-xinghewan</version><relativePath>../pom.xml</relativePath></parent>
|
|
<artifactId>cwos-component-organization-interface</artifactId>
|
|
<dependencies>
|
|
<dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>${fastjson.version}</version><scope>provided</scope></dependency>
|
|
<dependency><groupId>javax.validation</groupId><artifactId>validation-api</artifactId><version>1.1.0.Final</version><scope>provided</scope></dependency>
|
|
<dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-annotations</artifactId><scope>provided</scope></dependency>
|
|
<dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.18.2</version><scope>provided</scope></dependency>
|
|
<dependency><groupId>org.hibernate</groupId><artifactId>hibernate-validator</artifactId><version>5.3.6.Final</version><scope>provided</scope></dependency>
|
|
<dependency><groupId>org.springframework</groupId><artifactId>spring-web</artifactId><scope>provided</scope></dependency>
|
|
<!-- all-lib/ system deps for CloudWalk 3.2.0 line -->
|
|
<dependency><groupId>cn.cloudwalk.cloud</groupId><artifactId>cloudwalk-common-result</artifactId><version>3.2.0</version><scope>system</scope><systemPath>${project.basedir}/../all-lib/cloudwalk-common-result-3.2.0-Brussels-SRX.jar</systemPath></dependency>
|
|
<dependency><groupId>cn.cloudwalk.cloud</groupId><artifactId>cloudwalk-common-data</artifactId><version>3.5.2</version><scope>system</scope><systemPath>${project.basedir}/../all-lib/cloudwalk-common-data-3.5.2-Brussels-SRX.jar</systemPath></dependency>
|
|
<dependency><groupId>cn.cloudwalk.cloud</groupId><artifactId>cloudwalk-device-sdk-interface</artifactId><version>2.2.4</version><scope>system</scope><systemPath>${project.basedir}/../all-lib/cloudwalk-device-sdk-interface-2.2.4-SNAPSHOT.jar</systemPath></dependency>
|
|
<dependency><groupId>cn.cloudwalk.cloud</groupId><artifactId>cloudwalk-device-sdk-protocol-entity</artifactId><version>2.1.4</version><scope>system</scope><systemPath>${project.basedir}/../all-lib/cloudwalk-device-sdk-protocol-entity-2.1.4-SNAPSHOT.jar</systemPath></dependency>
|
|
</dependencies>
|
|
</project>
|