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
101 lines
4.2 KiB
XML
101 lines
4.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>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>1.5.22.RELEASE</version>
|
||
<relativePath/>
|
||
</parent>
|
||
|
||
<groupId>cn.cloudwalk.ninca</groupId>
|
||
<artifactId>ninca-common-component-organization-reactor</artifactId>
|
||
<version>2.9.2-xinghewan</version>
|
||
<packaging>pom</packaging>
|
||
<name>ninca-common-component-organization (Maven reactor)</name>
|
||
<description>组织服务组件 ninca-common-component-organization 反编译源码。来源:cwos-component-organization-v2.9.2_xinghewan(Spring Boot 1.5.17, Edgware.SR3)。</description>
|
||
|
||
<modules>
|
||
<module>cwos-component-organization-interface</module>
|
||
<module>cwos-component-organization-data</module>
|
||
<module>cwos-component-organization-service</module>
|
||
<module>cwos-component-organization-web</module>
|
||
</modules>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<java.version>1.8</java.version>
|
||
<maven.compiler.source>1.8</maven.compiler.source>
|
||
<maven.compiler.target>1.8</maven.compiler.target>
|
||
<spring.boot.version>1.5.22.RELEASE</spring.boot.version>
|
||
<spring.cloud.version>Edgware.SR6</spring.cloud.version>
|
||
<cloudwalk.common.version>3.7.2-Brussels-SRX</cloudwalk.common.version>
|
||
<fastjson.version>1.2.67</fastjson.version>
|
||
<mybatis.version>3.4.5</mybatis.version>
|
||
<pagehelper.version>5.1.7</pagehelper.version>
|
||
<hutool.version>4.1.14</hutool.version>
|
||
<poi.version>3.15</poi.version>
|
||
<nexus.baseUrl>http://192.168.3.12</nexus.baseUrl>
|
||
<nexus.public.repo>${nexus.baseUrl}/repository/maven-public/</nexus.public.repo>
|
||
<org.lib.dir>/media/zebra/9e8fa357-7db6-4d70-88ed-d5de5a059a663/星河湾星中星/源码/maven-ninca-common-component-organization/lib</org.lib.dir>
|
||
</properties>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-dependencies</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-dependencies</artifactId>
|
||
<version>${spring.cloud.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
<!-- Sub-modules -->
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.ninca</groupId>
|
||
<artifactId>cwos-component-organization-interface</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.ninca</groupId>
|
||
<artifactId>cwos-component-organization-data</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.cloudwalk.ninca</groupId>
|
||
<artifactId>cwos-component-organization-service</artifactId>
|
||
<version>${project.version}</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<repositories>
|
||
<repository>
|
||
<id>isolated-libs</id>
|
||
<url>file:${project.basedir}/.m2-isolated/repository</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project>
|