|
@@ -1,96 +0,0 @@
|
|
|
-<?xml version="1.0"?>
|
|
|
-<project
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
- xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
- <parent>
|
|
|
- <groupId>com.jjt</groupId>
|
|
|
- <artifactId>jjt</artifactId>
|
|
|
- <version>3.8.7</version>
|
|
|
- </parent>
|
|
|
- <artifactId>jjt-cloud-demo</artifactId>
|
|
|
- <packaging>jar</packaging>
|
|
|
- <name>jjt-cloud-demo</name>
|
|
|
- <url>http://maven.apache.org</url>
|
|
|
- <properties>
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
- </properties>
|
|
|
- <dependencies>
|
|
|
- <!-- serviecomb -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.huaweicloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-huawei-service-engine</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.huaweicloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-huawei-servicecomb-discovery</artifactId>
|
|
|
- <version>1.6.0-Hoxton</version>
|
|
|
- </dependency>
|
|
|
- <!-- 必选 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-context</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- nacos 新增配置 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.alibaba.cloud</groupId>
|
|
|
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- nacos 新增配置 end -->
|
|
|
- <!-- 最小配置,启动一个servlet容器 这里的配置可以不用引入 -->
|
|
|
- <dependency>
|
|
|
- <groupId>io.swagger</groupId>
|
|
|
- <artifactId>swagger-models</artifactId>
|
|
|
- <version>1.6.2</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>io.springfox</groupId>
|
|
|
- <artifactId>springfox-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
- <!-- end -->
|
|
|
- <dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
- <build>
|
|
|
- <finalName>${project.artifactId}</finalName>
|
|
|
- <resources>
|
|
|
- <resource>
|
|
|
- <directory>src/main/resources</directory>
|
|
|
- <filtering>true</filtering>
|
|
|
- </resource>
|
|
|
- </resources>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
- <executions>
|
|
|
- <execution>
|
|
|
- <goals>
|
|
|
- <goal>repackage</goal>
|
|
|
- </goals>
|
|
|
- </execution>
|
|
|
- </executions>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
-</project>
|