|
@@ -0,0 +1,99 @@
|
|
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
+ xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-example</artifactId>
|
|
|
|
|
+ <version>1.8.2</version>
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+
|
|
|
|
|
+ <artifactId>nexo-model</artifactId>
|
|
|
|
|
+
|
|
|
|
|
+ <description>
|
|
|
|
|
+ nexo-model 应用模块
|
|
|
|
|
+ </description>
|
|
|
|
|
+
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- SpringCloud Alibaba Nacos -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- SpringCloud Alibaba Nacos Config -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-sentinel</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-log</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-doc</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-security</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-web</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-mybatis</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-dubbo</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.nexo</groupId>
|
|
|
|
|
+ <artifactId>nexo-common-seata</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
|
|
+ <executions>
|
|
|
|
|
+ <execution>
|
|
|
|
|
+ <goals>
|
|
|
|
|
+ <goal>repackage</goal>
|
|
|
|
|
+ </goals>
|
|
|
|
|
+ </execution>
|
|
|
|
|
+ </executions>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+
|
|
|
|
|
+</project>
|