2020-01-19 17:40:41 +08:00
|
|
|
<?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.fly.cloud</groupId>
|
|
|
|
<artifactId>fly-cloud</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<modules>
|
2020-01-31 00:02:56 +08:00
|
|
|
<module>fly-cloud-eureka</module>
|
|
|
|
<module>fly-cloud-config</module>
|
2020-02-02 00:43:53 +08:00
|
|
|
<module>fly-cloud-provider-admin</module>
|
2020-01-31 00:02:56 +08:00
|
|
|
<module>fly-cloud-test</module>
|
|
|
|
<module>fly-common</module>
|
|
|
|
<module>fly-framework</module>
|
2020-01-31 22:31:42 +08:00
|
|
|
<module>fly-cloud-service-seckill</module>
|
2020-02-02 00:43:53 +08:00
|
|
|
<module>fly-cloud-consumer-admin</module>
|
2020-01-19 17:40:41 +08:00
|
|
|
</modules>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>fly-cloud</name>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.2.3.RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2020-01-31 00:02:56 +08:00
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2020-01-19 17:40:41 +08:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<spring-cloud.version>Hoxton.SR1</spring-cloud.version>
|
|
|
|
<lombok.version>1.18.10</lombok.version>
|
2020-01-31 00:02:56 +08:00
|
|
|
<hutool.version>5.0.6</hutool.version>
|
|
|
|
<mybatis-plus.version>3.0.7.1</mybatis-plus.version>
|
|
|
|
<druid.version>1.1.14</druid.version>
|
|
|
|
<fastjson.version>1.2.24</fastjson.version>
|
|
|
|
<mysql.version>8.0.18</mysql.version>
|
2020-01-19 17:40:41 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!--配置文件处理器-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<!--Lombok-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2020-01-31 00:02:56 +08:00
|
|
|
<!--mysql驱动包-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--阿里数据库连接池 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- mybatis plus -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- fastjson -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- hutool工具类 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-19 17:40:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
|
|
|
<version>${spring-cloud.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
</project>
|