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
57 lines
2.2 KiB
XML
57 lines
2.2 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-data</artifactId>
|
|
<name>cwos-component-organization-data</name>
|
|
<description>数据层:MyBatis Mapper、Entity、DAO、DTO</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk.ninca</groupId>
|
|
<artifactId>cwos-component-organization-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mybatis</groupId>
|
|
<artifactId>mybatis</artifactId>
|
|
<version>${mybatis.version}</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>
|
|
<!-- 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>
|
|
</dependencies>
|
|
</project>
|