1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/miracle-peak-miracle-cloud

Клонировать/Скачать
pom.xml 4.5 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
miracle Отправлено 16.12.2020 04:48 d52482a
<?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 https://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>2.3.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>pers.miracle.miraclecloud</groupId>
<artifactId>miracle-cloud</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>miracle-cloud</name>
<description>Demo project for Spring Boot</description>
<packaging>pom</packaging>
<modules>
<!-- 公共模块包含 zipkin 链路跟踪-->
<module>miracle-common</module>
<!-- 路由模块-->
<module>miracle-gateway</module>
<!-- 系统模块-->
<module>miracle-system</module>
<!--限流模块-->
<!-- <module>miracle-sentinel</module>-->
</modules>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- jwt-->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.0</version>
</dependency>
<!--包含了sleuth+zipkin-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zipkin</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!--引入公共模块-->
<dependency>
<groupId>pers.miracle.miraclecloud.common</groupId>
<artifactId>miracle-common</artifactId>
<version>0.0.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>pers.miracle.miraclecloud.sentinel</groupId>
<artifactId>miracle-sentinel</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--spring cloud Hoxton.SR1-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Hoxton.SR1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-alibaba-dependencies</artifactId>
<version>2.1.0.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<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>
<!-- 跳过单元测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
<!--
网络差时需启用,否则可能下拉依赖失败,即使你的maven配置了阿里的镜像
-->
<repositories>
<repository>
<id>aliyunmaven</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
</project>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/miracle-peak-miracle-cloud.git
git@api.gitlife.ru:oschina-mirror/miracle-peak-miracle-cloud.git
oschina-mirror
miracle-peak-miracle-cloud
miracle-peak-miracle-cloud
master