123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <?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>
- <groupId>com.tofly</groupId>
- <artifactId>toflyframwork</artifactId>
- <packaging>pom</packaging>
- <version>1.0-SNAPSHOT</version>
- <modules>
- <module>tofly-eureka</module>
- <module>swagger-bootstrap-ui</module>
- <module>tofly-getway</module>
- <module>tofly-common</module>
- <module>tofly-base</module>
- <module>tofly-monitor</module>
- <module>tofly-auth</module>
- </modules>
- <properties>
- <spring-boot.version>2.1.7.RELEASE</spring-boot.version>
- <spring-cloud.version>Greenwich.SR2</spring-cloud.version>
- <spring-platform.version>Cairo-SR8</spring-platform.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <spring-boot-admin.version>2.1.6</spring-boot-admin.version>
- <hutool.version>4.6.3</hutool.version>
- <mybatis-plus.version>3.1.2</mybatis-plus.version>
- <kaptcha.version>0.0.9</kaptcha.version>
- <velocity.version>1.7</velocity.version>
- <jasypt.version>2.1.0</jasypt.version>
- <security.oauth.version>2.3.6.RELEASE</security.oauth.version>
- <jackson.modules>2.9.8</jackson.modules>
- <!--zipkin2.12.x需要此版本jooq-->
- <jooq.version>3.11.11</jooq.version>
- <zipkin.version>2.12.2</zipkin.version>
- <zipkin-storage-mysql.version>2.8.4</zipkin-storage-mysql.version>
- <fastjson.version>1.2.47</fastjson.version>
- <swagger.version>2.9.2</swagger.version>
- <swaggermg.version>1.0.6</swaggermg.version>
- <druid.version>1.1.16</druid.version>
- </properties>
- <dependencies>
- <!--eureka 客户端-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
- </dependency>
- <!--配置文件处理器-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.github.ulisesbocchio</groupId>
- <artifactId>jasypt-spring-boot-starter</artifactId>
- <version>${jasypt.version}</version>
- </dependency>
- <!--监控-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <!--监控客户端-->
- <dependency>
- <groupId>de.codecentric</groupId>
- <artifactId>spring-boot-admin-starter-client</artifactId>
- <version>${spring-boot-admin.version}</version>
- </dependency>
- <!--服务链路追踪-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-sleuth</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-sleuth-zipkin</artifactId>
- </dependency>
- <!--断路器依赖-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
- </dependency>
- <!--负载均衡客户端-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <!--Lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <!--测试依赖-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring-boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>io.spring.platform</groupId>
- <artifactId>platform-bom</artifactId>
- <version>${spring-platform.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <!--稳定版本,替代spring security bom内置-->
- <dependency>
- <groupId>org.springframework.security.oauth</groupId>
- <artifactId>spring-security-oauth2</artifactId>
- <version>${security.oauth.version}</version>
- </dependency>
- <!--jackson模块-->
- <dependency>
- <groupId>com.fasterxml.jackson.module</groupId>
- <artifactId>jackson-modules-java8</artifactId>
- <version>${jackson.modules}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zyplayer</groupId>
- <artifactId>swagger-mg-ui</artifactId>
- <version>${swaggermg.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <repositories>
- <!--阿里云主仓库,代理了maven central和jcenter仓库-->
- <repository>
- <id>aliyun</id>
- <name>aliyun</name>
- <url>https://maven.aliyun.com/repository/public</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <!--阿里云代理Spring 官方仓库-->
- <repository>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://maven.aliyun.com/repository/spring</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
- <pluginRepositories>
- <!--阿里云代理Spring 插件仓库-->
- <pluginRepository>
- <id>spring-plugin</id>
- <name>spring-plugin</name>
- <url>https://maven.aliyun.com/repository/spring-plugin</url>
- <releases>
- <enabled>true</enabled>
- </releases>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </pluginRepository>
- </pluginRepositories>
- <distributionManagement>
- <repository>
- <id>nexus-releases</id>
- <name>Nexus Release Repository</name>
- <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
- </repository>
- </distributionManagement>
- </project>
|