2021-01-20 17:10:45 +08:00
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-07-12 20:22:30 +08:00
|
|
|
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">
|
2021-01-20 17:10:45 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-parent</artifactId>
|
2022-04-28 01:30:17 +08:00
|
|
|
<version>6.0.0.M1</version>
|
2021-01-20 17:10:45 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
2022-04-28 01:30:17 +08:00
|
|
|
<description>Hutool是一个优雅而小巧的Java工具类库</description>
|
2021-01-20 17:10:45 +08:00
|
|
|
<url>https://github.com/looly/hutool</url>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- 创建源码jar -->
|
|
|
|
<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>
|
|
|
|
|
|
|
|
</project>
|