74 lines
2.5 KiB
XML
74 lines
2.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/maven-v4_0_0.xsd">
|
||
<parent>
|
||
<artifactId>hutool-parent</artifactId>
|
||
<groupId>cn.hutool</groupId>
|
||
<version>5.8.20</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>hutool-all</artifactId>
|
||
<name>${project.artifactId}</name>
|
||
<description>Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。</description>
|
||
<url>https://github.com/looly/hutool</url>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<artifactId>maven-shade-plugin</artifactId>
|
||
<version>3.2.1</version>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>shade</goal>
|
||
</goals>
|
||
<configuration>
|
||
<createSourcesJar>true</createSourcesJar>
|
||
<artifactSet>
|
||
<includes>
|
||
<include>${project.groupId}:*:*</include>
|
||
</includes>
|
||
</artifactSet>
|
||
<filters>
|
||
<filter>
|
||
<artifact>*:*</artifact>
|
||
<excludes>
|
||
<exclude>META-INF/maven/**</exclude>
|
||
</excludes>
|
||
</filter>
|
||
</filters>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.junit.vintage</groupId>
|
||
<artifactId>junit-vintage-engine</artifactId>
|
||
<version>5.9.2</version>
|
||
<scope>test</scope>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>junit-platform-engine</artifactId>
|
||
<groupId>org.junit.platform</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>junit</artifactId>
|
||
<groupId>junit</groupId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>apiguardian-api</artifactId>
|
||
<groupId>org.apiguardian</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>1.18.26</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|