-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
788 additions
and
496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,368 @@ | ||
<?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"> | ||
<parent> | ||
<artifactId>common-api</artifactId> | ||
<groupId>io.github.alice52</groupId> | ||
<version>0.0.1</version> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<artifactId>common-api-bom</artifactId> | ||
|
||
<properties> | ||
<!-- #region ====================== common version ===================== --> | ||
|
||
<!-- common --> | ||
<swagger.fox.version>2.9.2</swagger.fox.version> | ||
<swagger-bootstrap-ui.version>1.9.3</swagger-bootstrap-ui.version> | ||
<swagger2.knife4j>3.0.3</swagger2.knife4j> | ||
<swagger.starter>3.0.0</swagger.starter> | ||
<slf4j.api.version>1.7.36</slf4j.api.version> | ||
<logback.core.version>1.2.9</logback.core.version> | ||
<logback.classic.version>1.2.3</logback.classic.version> | ||
<aliyun.logback.version>0.1.18</aliyun.logback.version> | ||
<janino.version>3.1.9</janino.version> | ||
|
||
<!-- tool --> | ||
<jodah.expiringmap.version>0.5.10</jodah.expiringmap.version> | ||
<lombok.version>1.18.24</lombok.version> | ||
<hutool.all.version>5.8.9</hutool.all.version> | ||
<jasypt.encrtpy.version>3.0.4</jasypt.encrtpy.version> | ||
<mapstruct.version>1.5.3.Final</mapstruct.version> | ||
<guava.version>31.1-jre</guava.version> | ||
<validation.api.version>2.0.1.Final</validation.api.version> | ||
<kaptcha.version>0.0.9</kaptcha.version> | ||
|
||
<!-- spring --> | ||
<spring.boot.version>2.7.5</spring.boot.version> | ||
<actuator.admin.version>2.7.7</actuator.admin.version> | ||
<spring.cloud.version>2021.0.4</spring.cloud.version> | ||
<cloud.alibaba.version>2021.1</cloud.alibaba.version> | ||
<security.oauth.version>2.5.2.RELEASE</security.oauth.version> | ||
<feign.core.version>11.10</feign.core.version> | ||
<spring.boot.maven.version>2.2.6.RELEASE</spring.boot.maven.version> | ||
|
||
<!-- jackson --> | ||
<jackson.modules>2.13.4</jackson.modules> | ||
|
||
<!-- database --> | ||
<mysql.version>5.1.49</mysql.version> | ||
<druid.version>1.2.14</druid.version> | ||
<mybatis.plus.version>3.5.2</mybatis.plus.version> | ||
<mybatis.spring.boot.version>2.2.2</mybatis.spring.boot.version> | ||
<elasticsearch.version>7.17.7</elasticsearch.version> | ||
<redisson.version>3.17.7</redisson.version> | ||
|
||
<!-- mq --> | ||
<rabbitmq.client.version>5.16.0</rabbitmq.client.version> | ||
|
||
<!-- others --> | ||
<junit.version>4.13.2</junit.version> | ||
<jquery.version>3.3.1</jquery.version> | ||
<justauth.starter>1.4.0</justauth.starter> | ||
<grpc_version>1.50.2</grpc_version> | ||
<curator.zk.version>5.4.0</curator.zk.version> | ||
<qcloud.version>5.6.125.2</qcloud.version> | ||
<!-- #region ====================== common version ===================== --> | ||
</properties> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<!-- colud --> | ||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-dependencies</artifactId> | ||
<version>${spring.cloud.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.alibaba.cloud</groupId> | ||
<artifactId>spring-cloud-alibaba-dependencies</artifactId> | ||
<version>${cloud.alibaba.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.openfeign</groupId> | ||
<artifactId>feign-core</artifactId> | ||
<version>${feign.core.version}</version> | ||
</dependency> | ||
<!-- logger --> | ||
<dependency> | ||
<artifactId>slf4j-api</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
<version>${slf4j.api.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-core</artifactId> | ||
<version>${logback.core.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<version>${logback.classic.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.janino</groupId> | ||
<artifactId>janino</artifactId> | ||
<version>${janino.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.aliyun.openservices</groupId> | ||
<artifactId>aliyun-log-logback-appender</artifactId> | ||
<version>${aliyun.logback.version}</version> | ||
</dependency> | ||
|
||
<!-- tool --> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<version>${lombok.version}</version> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>cn.hutool</groupId> | ||
<artifactId>hutool-all</artifactId> | ||
<version>${hutool.all.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.ulisesbocchio</groupId> | ||
<artifactId>jasypt-spring-boot-starter</artifactId> | ||
<version>${jasypt.encrtpy.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mapstruct</groupId> | ||
<artifactId>mapstruct</artifactId> | ||
<version>${mapstruct.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.validation</groupId> | ||
<artifactId>validation-api</artifactId> | ||
<version>${validation.api.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>${guava.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.xkcoding.justauth</groupId> | ||
<artifactId>justauth-spring-boot-starter</artifactId> | ||
<version>${justauth.starter}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.jodah</groupId> | ||
<artifactId>expiringmap</artifactId> | ||
<version>${jodah.expiringmap.version}</version> | ||
</dependency> | ||
<!--验证码--> | ||
<dependency> | ||
<groupId>com.github.axet</groupId> | ||
<artifactId>kaptcha</artifactId> | ||
<version>${kaptcha.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> | ||
|
||
<!-- spring boot 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>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-validation</artifactId> | ||
<version>${spring.boot.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security.oauth</groupId> | ||
<artifactId>spring-security-oauth2</artifactId> | ||
<version>${security.oauth.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.codecentric</groupId> | ||
<artifactId>spring-boot-admin-starter-server</artifactId> | ||
<version>${actuator.admin.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.codecentric</groupId> | ||
<artifactId>spring-boot-admin-starter-client</artifactId> | ||
<version>${actuator.admin.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>${junit.version}</version> | ||
</dependency> | ||
|
||
<!-- database --> | ||
<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>${druid.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mybatis.spring.boot</groupId> | ||
<artifactId>mybatis-spring-boot-starter</artifactId> | ||
<version>${mybatis.spring.boot.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.baomidou</groupId> | ||
<artifactId>mybatis-plus-boot-starter</artifactId> | ||
<version>${mybatis.plus.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.baomidou</groupId> | ||
<artifactId>mybatis-plus-extension</artifactId> | ||
<version>${mybatis.plus.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.baomidou</groupId> | ||
<artifactId>mybatis-plus-annotation</artifactId> | ||
<version>${mybatis.plus.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.elasticsearch.client</groupId> | ||
<artifactId>elasticsearch-rest-high-level-client</artifactId> | ||
<version>${elasticsearch.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.elasticsearch.client</groupId> | ||
<artifactId>elasticsearch-rest-client</artifactId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.elasticsearch</groupId> | ||
<artifactId>elasticsearch</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<!-- redis --> | ||
<dependency> | ||
<groupId>org.redisson</groupId> | ||
<artifactId>redisson-spring-boot-starter</artifactId> | ||
<version>${redisson.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.redisson</groupId> | ||
<artifactId>redisson-spring-data-23</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.redisson</groupId> | ||
<artifactId>redisson-spring-data-21</artifactId> | ||
<version>${redisson.version}</version> | ||
</dependency> | ||
|
||
<!-- swagger2 --> | ||
<dependency> | ||
<groupId>io.springfox</groupId> | ||
<artifactId>springfox-swagger-ui</artifactId> | ||
<version>${swagger.fox.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.springfox</groupId> | ||
<artifactId>springfox-swagger2</artifactId> | ||
<version>${swagger.fox.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.xiaoymin</groupId> | ||
<artifactId>knife4j-spring-boot-starter</artifactId> | ||
<version>${swagger2.knife4j}</version> | ||
</dependency> | ||
<!-- swagger3 --> | ||
<dependency> | ||
<groupId>io.springfox</groupId> | ||
<artifactId>springfox-boot-starter</artifactId> | ||
<version>${swagger.starter}</version> | ||
</dependency> | ||
|
||
<!-- grpc --> | ||
<dependency> | ||
<groupId>io.grpc</groupId> | ||
<artifactId>grpc-bom</artifactId> | ||
<version>${grpc_version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
|
||
<!-- zookeeper: curator 4.1.0 == zookeeper 3.5.x --> | ||
<!-- curator 与 zookeeper 版本对应关系:https://curator.apache.org/zk-compatibility.html --> | ||
<dependency> | ||
<groupId>org.apache.curator</groupId> | ||
<artifactId>curator-recipes</artifactId> | ||
<version>${curator.zk.version}</version> | ||
</dependency> | ||
|
||
<!-- rabbitmq --> | ||
<dependency> | ||
<groupId>com.rabbitmq</groupId> | ||
<artifactId>amqp-client</artifactId> | ||
<version>${rabbitmq.client.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.qcloud</groupId> | ||
<artifactId>cos_api</artifactId> | ||
<version>${qcloud.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.sonarsource.scanner.maven</groupId> | ||
<artifactId>sonar-maven-plugin</artifactId> | ||
<version>${sonar-maven-plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<version>${spring.boot.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>${maven.compiler.plugin}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-gpg-plugin</artifactId> | ||
<version>3.0.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.4.1</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
</project> |
Oops, something went wrong.