76 lines
2.8 KiB
XML
76 lines
2.8 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>
|
|
<artifactId>pqs-common</artifactId>
|
|
<groupId>com.njcn</groupId>
|
|
<version>1.0.0</version>
|
|
</parent>
|
|
<artifactId>common-huawei</artifactId>
|
|
<description>华为cse相关sdk</description>
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- <!–springcloud alibaba nacos的配置服务器–>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.alibaba.cloud</groupId>-->
|
|
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.alibaba.csp</groupId>-->
|
|
<!-- <artifactId>sentinel-datasource-nacos</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.njcn</groupId>
|
|
<artifactId>common-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<!--华为云cse微服务引擎-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.huaweicloud</groupId>-->
|
|
<!-- <artifactId>spring-cloud-starter-huawei-actuator</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>com.huaweicloud</groupId>
|
|
<artifactId>spring-cloud-starter-huawei-service-engine</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.huaweicloud/spring-cloud-huawei-discovery -->
|
|
<dependency>
|
|
<groupId>com.huaweicloud</groupId>
|
|
<artifactId>spring-cloud-huawei-discovery</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.huaweicloud</groupId>
|
|
<artifactId>spring-cloud-starter-huawei-config</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-okhttp</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |