295 lines
10 KiB
XML
295 lines
10 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>
|
||
|
||
<parent>
|
||
<groupId>xyz.zhouxy.plusone</groupId>
|
||
<artifactId>plusone-parent</artifactId>
|
||
<version>1.1.0-SNAPSHOT</version>
|
||
</parent>
|
||
|
||
<artifactId>plusone-dependencies</artifactId>
|
||
<packaging>pom</packaging>
|
||
|
||
<description>
|
||
plusone 相关项目依赖管理
|
||
</description>
|
||
|
||
<properties>
|
||
<guava.version>33.4.8-jre</guava.version>
|
||
<joda-time.version>2.14.0</joda-time.version>
|
||
|
||
<google-jsr305.version>3.0.2</google-jsr305.version>
|
||
<checker-qual.version>3.49.2</checker-qual.version>
|
||
|
||
<commons-lang3.version>3.17.0</commons-lang3.version>
|
||
<commons-collections4.version>4.5.0</commons-collections4.version>
|
||
<commons-io.version>2.19.0</commons-io.version>
|
||
<commons-dbutils.version>1.8.1</commons-dbutils.version>
|
||
<commons-crypto.version>1.2.0</commons-crypto.version>
|
||
|
||
<okhttp.version>5.2.0</okhttp.version>
|
||
<okio.version>3.16.0</okio.version>
|
||
|
||
<logback.version>1.3.15</logback.version>
|
||
|
||
<jackson.version>2.18.3</jackson.version>
|
||
<gson.version>2.13.1</gson.version>
|
||
|
||
<mapstruct.version>1.6.3</mapstruct.version>
|
||
|
||
<h2.version>2.2.224</h2.version>
|
||
<mybatis.version>3.5.19</mybatis.version>
|
||
<querydsl.version>5.1.0</querydsl.version>
|
||
|
||
<byte-buddy.version>1.17.5</byte-buddy.version>
|
||
|
||
<poi.version>5.4.1</poi.version>
|
||
|
||
<java-jwt.version>4.5.0</java-jwt.version>
|
||
<jasypt.version>1.9.3</jasypt.version>
|
||
<jbcrypt.version>0.4</jbcrypt.version>
|
||
|
||
<minio.version>8.6.0</minio.version>
|
||
|
||
<lombok.version>1.18.36</lombok.version>
|
||
<hutool.version>5.8.37</hutool.version>
|
||
|
||
<junit.version>5.12.1</junit.version>
|
||
</properties>
|
||
|
||
<dependencyManagement>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.google.guava</groupId>
|
||
<artifactId>guava</artifactId>
|
||
<version>${guava.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>joda-time</groupId>
|
||
<artifactId>joda-time</artifactId>
|
||
<version>${joda-time.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.code.findbugs</groupId>
|
||
<artifactId>jsr305</artifactId>
|
||
<version>${google-jsr305.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.checkerframework</groupId>
|
||
<artifactId>checker-qual</artifactId>
|
||
<version>${checker-qual.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-lang3</artifactId>
|
||
<version>${commons-lang3.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-collections4</artifactId>
|
||
<version>${commons-collections4.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>${commons-io.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-dbutils</groupId>
|
||
<artifactId>commons-dbutils</artifactId>
|
||
<version>${commons-dbutils.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-crypto</artifactId>
|
||
<version>${commons-crypto.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>${okhttp.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.squareup.okio</groupId>
|
||
<artifactId>okio</artifactId>
|
||
<version>${okio.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>ch.qos.logback</groupId>
|
||
<artifactId>logback-classic</artifactId>
|
||
<version>${logback.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Jackson -->
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
<version>${jackson.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||
<artifactId>jackson-datatype-jsr310</artifactId>
|
||
<version>${jackson.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Gson -->
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>${gson.version}</version>
|
||
</dependency>
|
||
|
||
<!-- MapStruct -->
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct</artifactId>
|
||
<version>${mapstruct.version}</version>
|
||
</dependency>
|
||
|
||
<!-- H2 测试数据库 -->
|
||
<dependency>
|
||
<groupId>com.h2database</groupId>
|
||
<artifactId>h2</artifactId>
|
||
<version>${h2.version}</version>
|
||
</dependency>
|
||
|
||
<!-- MyBatis -->
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis</artifactId>
|
||
<version>${mybatis.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Query DSL -->
|
||
<dependency>
|
||
<groupId>com.querydsl</groupId>
|
||
<artifactId>querydsl-sql</artifactId>
|
||
<version>${querydsl.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Byte Buddy 字节码工具 -->
|
||
<dependency>
|
||
<groupId>net.bytebuddy</groupId>
|
||
<artifactId>byte-buddy</artifactId>
|
||
<version>${byte-buddy.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Apache POI - Core -->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>${poi.version}</version>
|
||
</dependency>
|
||
<!-- Apache POI - Excel -->
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>${poi.version}</version>
|
||
</dependency>
|
||
|
||
<!-- JWT -->
|
||
<dependency>
|
||
<groupId>com.auth0</groupId>
|
||
<artifactId>java-jwt</artifactId>
|
||
<version>${java-jwt.version}</version>
|
||
</dependency>
|
||
|
||
<!-- jasypt 加密解密 -->
|
||
<dependency>
|
||
<groupId>org.jasypt</groupId>
|
||
<artifactId>jasypt</artifactId>
|
||
<version>${jasypt.version}</version>
|
||
</dependency>
|
||
|
||
<!-- Bcrypt是一种用于密码哈希的加密算法,基于Blowfish算法 -->
|
||
<dependency>
|
||
<groupId>org.mindrot</groupId>
|
||
<artifactId>jbcrypt</artifactId>
|
||
<version>${jbcrypt.version}</version>
|
||
</dependency>
|
||
|
||
<!-- MinIO -->
|
||
<dependency>
|
||
<groupId>io.minio</groupId>
|
||
<artifactId>minio</artifactId>
|
||
<version>${minio.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>${lombok.version}</version>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-bom</artifactId>
|
||
<version>${hutool.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.junit</groupId>
|
||
<artifactId>junit-bom</artifactId>
|
||
<version>${junit.version}</version>
|
||
<type>pom</type>
|
||
<scope>import</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</dependencyManagement>
|
||
|
||
<build>
|
||
<pluginManagement>
|
||
<plugins>
|
||
<plugin>
|
||
<artifactId>maven-clean-plugin</artifactId>
|
||
<version>3.4.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<version>3.3.1</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.13.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>3.3.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<version>3.4.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-install-plugin</artifactId>
|
||
<version>3.1.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>3.1.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-site-plugin</artifactId>
|
||
<version>3.12.1</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||
<version>3.6.1</version>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
</build>
|
||
</project>
|