mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +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
39 lines
1.4 KiB
XML
39 lines
1.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>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-web</artifactId>
|
|
<name>cwos-component-organization-web</name>
|
|
<description>Web 层:REST 控制器</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk.ninca</groupId>
|
|
<artifactId>cwos-component-organization-service</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|