forked from plusone/plusone-commons
- 移除了子模块的 pom.xml 文件中的冗余配置项,包括重复的 url、licenses、developers 和 scm 配置
- 移除了 checker-qual依赖
- 清理了多余的maven插件配置
- 更新了多个依赖库的版本,详情如下
- guava: 33.5.0-jre → 33.6.0-jre
- joda-time: 2.14.0 → 2.14.2
- commons-io: 2.21.0 → 2.22.0
- okio: 3.16.4 → 3.17.0
- logback: 1.3.15 → 1.3.16
- jackson: 2.18.3 → 2.21.3
- gson: 2.13.2 → 2.14.0
- byte-buddy: 1.18.3 → 1.18.8
- java-jwt: 4.5.0 → 4.5.2
- lombok: 1.18.42 → 1.18.46
- hutool: 5.8.43 → 5.8.46
- junit: 5.14.2 → 5.14.4
153 lines
5.1 KiB
XML
153 lines
5.1 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>
|
|
|
|
<name>plusone-parent</name>
|
|
|
|
<groupId>xyz.zhouxy.plusone</groupId>
|
|
<artifactId>plusone-parent</artifactId>
|
|
<version>1.1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<description>
|
|
一个常用的工具集,结合 guava 使用。
|
|
</description>
|
|
|
|
<url>https://gitea.zhouxy.xyz/plusone/plusone-commons</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Zhou Xingyi (周兴毅)</name>
|
|
<url>https://gitea.zhouxy.xyz/plusone</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://gitea.zhouxy.xyz/plusone/plusone-commons.git</connection>
|
|
<developerConnection>scm:git:ssh://gitea.zhouxy.xyz/plusone/plusone-commons.git</developerConnection>
|
|
<url>https://gitea.zhouxy.xyz/plusone/plusone-commons</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<java.version>1.8</java.version>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<!-- dependencies -->
|
|
|
|
<guava.version>33.6.0-jre</guava.version>
|
|
<joda-time.version>2.14.2</joda-time.version>
|
|
|
|
<google-jsr305.version>3.0.2</google-jsr305.version>
|
|
|
|
<commons-lang3.version>3.20.0</commons-lang3.version>
|
|
<commons-collections4.version>4.5.0</commons-collections4.version>
|
|
<commons-io.version>2.22.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.3.2</okhttp.version>
|
|
<okio.version>3.17.0</okio.version>
|
|
|
|
<logback.version>1.3.16</logback.version>
|
|
|
|
<jackson.version>2.21.3</jackson.version>
|
|
<gson.version>2.14.0</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.18.8</byte-buddy.version>
|
|
|
|
<poi.version>5.5.1</poi.version>
|
|
|
|
<java-jwt.version>4.5.2</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.46</lombok.version>
|
|
<hutool.version>5.8.46</hutool.version>
|
|
|
|
<junit.version>5.14.4</junit.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>plusone-commons</module>
|
|
<module>plusone-dependencies</module>
|
|
</modules>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>aliyun-plugin</id>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<!-- GPG -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<version>3.2.5</version>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.central</groupId>
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
<version>0.5.0</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<publishingServerId>central</publishingServerId>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|