224 lines
8.5 KiB
XML
224 lines
8.5 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>
|
||
|
||
<groupId>org.integrated</groupId>
|
||
<artifactId>integrated-project</artifactId>
|
||
<packaging>pom</packaging>
|
||
<version>1.2-SNAPSHOT</version>
|
||
<modules>
|
||
<module>comused-module</module>
|
||
<module>tool-module</module>
|
||
<module>message-module</module>
|
||
<module>basic-module</module>
|
||
</modules>
|
||
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.3.0.RELEASE</version>
|
||
</parent>
|
||
|
||
<properties>
|
||
<cloud.version>Hoxton.RELEASE</cloud.version>
|
||
<web.version>2.3.0.RELEASE</web.version>
|
||
<eureka.version>2.2.3.RELEASE</eureka.version>
|
||
<gateway.version>2.2.3.RELEASE</gateway.version>
|
||
<fastjson.version>1.2.83</fastjson.version>
|
||
<mysql.version>5.1.47</mysql.version>
|
||
<druid.version>1.1.16</druid.version>
|
||
<spring-boot.druid.version>1.1.16</spring-boot.druid.version>
|
||
<mybatis.version>2.0.0</mybatis.version>
|
||
<pagehelper.version>1.2.5</pagehelper.version>
|
||
<mybatis-plus.version>3.1.0</mybatis-plus.version>
|
||
<velocity.version>2.1</velocity.version>
|
||
<freemarker.version>2.3.28</freemarker.version>
|
||
<beetl.version>3.0.0.M1</beetl.version>
|
||
<swagger2.version>2.9.2</swagger2.version>
|
||
<swagger2-ui.version>2.9.2</swagger2-ui.version>
|
||
<jjwt.version>0.7.0</jjwt.version>
|
||
<lombok.version>1.18.18</lombok.version>
|
||
<netty.version>4.1.45.Final</netty.version>
|
||
<feign.version>2.2.4.RELEASE</feign.version>
|
||
<aliyuncore.version>4.4.6</aliyuncore.version>
|
||
<aliyunecs.version>4.17.6</aliyunecs.version>
|
||
<hutool.version>5.0.7</hutool.version>
|
||
</properties>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-dependencies</artifactId>
|
||
<version>${cloud.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<version>${web.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
|
||
<version>${eureka.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
||
<version>${eureka.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-gateway</artifactId>
|
||
<version>${gateway.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>${fastjson.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>${gson.version}</version>
|
||
</dependency>
|
||
|
||
<!--jwt Begin-->
|
||
<dependency>
|
||
<groupId>io.jsonwebtoken</groupId>
|
||
<artifactId>jjwt</artifactId>
|
||
<version>${jjwt.version}</version>
|
||
</dependency>
|
||
<!--jwt end-->
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>${lombok.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Mysql Begin -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>${mysql.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
<version>${druid.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid-spring-boot-starter</artifactId>
|
||
<version>${spring-boot.druid.version}</version>
|
||
</dependency>
|
||
<!-- Mysql End -->
|
||
|
||
<!-- Mybatis Begin -->
|
||
<dependency>
|
||
<groupId>org.mybatis.spring.boot</groupId>
|
||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
<version>${mybatis.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
<version>${pagehelper.version}</version>
|
||
</dependency>
|
||
<!-- Mybatis End -->
|
||
|
||
<!-- Mybatis-Plus Begin -->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
<version>${mybatis-plus.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.velocity</groupId>
|
||
<artifactId>velocity-engine-core</artifactId>
|
||
<version>${velocity.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.freemarker</groupId>
|
||
<artifactId>freemarker</artifactId>
|
||
<version>${freemarker.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.ibeetl</groupId>
|
||
<artifactId>beetl</artifactId>
|
||
<version>${beetl.version}</version>
|
||
</dependency>
|
||
<!-- Mybatis-Plus End -->
|
||
|
||
<!-- SpringFox-Swagger2 Begin -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>${swagger2.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>${swagger2-ui.version}</version>
|
||
</dependency>
|
||
<!-- SpringFox-Swagger2 End -->
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
<version>${feign.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>${hutool.version}</version>
|
||
</dependency>
|
||
|
||
<!-- aliyun message Begin -->
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-core</artifactId>
|
||
<version>${aliyuncore.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.aliyun</groupId>
|
||
<artifactId>aliyun-java-sdk-ecs</artifactId>
|
||
<version>${aliyunecs.version}</version>
|
||
</dependency>
|
||
<!-- aliyun message End -->
|
||
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<!--将这段放开,并指定入口,则打jar包,如果注释这一段,并在子项目web中将<packaging>jar</packaging>改成war,则打成war包-->
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<!-- The plugin rewrites your manifest -->
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>2.2.2.RELEASE</version>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal><!--可以把依赖的包都打包到生成的Jar包中-->
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project> |