|
@@ -2,57 +2,70 @@
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
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">
|
|
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>
|
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.txz</groupId>
|
|
<groupId>com.txz</groupId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<parent>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
- <version>2.0.5.RELEASE</version>
|
|
|
|
|
|
+ <version>2.7.18</version>
|
|
</parent>
|
|
</parent>
|
|
|
|
+ <properties>
|
|
|
|
+ <spring-cloud-alibaba.version>2023.0.3.3</spring-cloud-alibaba.version>
|
|
|
|
+ </properties>
|
|
|
|
|
|
|
|
|
|
<artifactId>operating</artifactId>
|
|
<artifactId>operating</artifactId>
|
|
<packaging>pom</packaging>
|
|
<packaging>pom</packaging>
|
|
- <modules>
|
|
|
|
-<!-- <module>operating-interface</module>-->
|
|
|
|
|
|
+ <modules>
|
|
|
|
+ <!-- <module>operating-interface</module>-->
|
|
<module>operating-service</module>
|
|
<module>operating-service</module>
|
|
- <module>operating-api</module>
|
|
|
|
|
|
+ <module>operating-api</module>
|
|
</modules>
|
|
</modules>
|
|
|
|
|
|
- <dependencyManagement>
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
|
- <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
- <version>Finchley.SR1</version>
|
|
|
|
- <type>pom</type>
|
|
|
|
- <scope>import</scope>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
|
- <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
- <version>0.2.2.RELEASE</version>
|
|
|
|
- <type>pom</type>
|
|
|
|
- <scope>import</scope>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
- </dependencyManagement>
|
|
|
|
- <distributionManagement>
|
|
|
|
- <snapshotRepository>
|
|
|
|
- <uniqueVersion>false</uniqueVersion>
|
|
|
|
- <id>nexus-snapshots</id>
|
|
|
|
- <name>nexus-snapshots</name>
|
|
|
|
- <url>http://124.220.229.80:9091/repository/maven-snapshots/</url>
|
|
|
|
- <layout>default</layout>
|
|
|
|
- </snapshotRepository>
|
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
+ <version>Finchley.SR1</version>
|
|
|
|
+ <type>pom</type>
|
|
|
|
+ <scope>import</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
|
+ <version>0.2.2.RELEASE</version>
|
|
|
|
+ <type>pom</type>
|
|
|
|
+ <scope>import</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
+ <version>${spring-cloud-alibaba.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
+ <distributionManagement>
|
|
|
|
+ <snapshotRepository>
|
|
|
|
+ <uniqueVersion>false</uniqueVersion>
|
|
|
|
+ <id>nexus-snapshots</id>
|
|
|
|
+ <name>nexus-snapshots</name>
|
|
|
|
+ <url>http://124.220.229.80:9091/repository/maven-snapshots/</url>
|
|
|
|
+ <layout>default</layout>
|
|
|
|
+ </snapshotRepository>
|
|
|
|
|
|
- <repository>
|
|
|
|
- <id>nexus-releases</id>
|
|
|
|
- <name>nexus-releases</name>
|
|
|
|
- <url>http://124.220.229.80:9091/repository/maven-releases/</url>
|
|
|
|
- </repository>
|
|
|
|
- </distributionManagement>
|
|
|
|
|
|
+ <repository>
|
|
|
|
+ <id>nexus-releases</id>
|
|
|
|
+ <name>nexus-releases</name>
|
|
|
|
+ <url>http://124.220.229.80:9091/repository/maven-releases/</url>
|
|
|
|
+ </repository>
|
|
|
|
+ </distributionManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
<build>
|