83 lines
3.2 KiB
XML
83 lines
3.2 KiB
XML
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
|||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|||
|
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>
|
|||
|
|
|||
|
<groupId>com.dx.union</groupId>
|
|||
|
<artifactId>UnionPaySigner</artifactId>
|
|||
|
<version>1.0-SNAPSHOT</version>
|
|||
|
|
|||
|
<properties>
|
|||
|
<maven.compiler.source>8</maven.compiler.source>
|
|||
|
<maven.compiler.target>8</maven.compiler.target>
|
|||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
</properties>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>cn.hutool</groupId>
|
|||
|
<artifactId>hutool-http</artifactId>
|
|||
|
<version>5.8.34</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>cn.hutool</groupId>
|
|||
|
<artifactId>hutool-json</artifactId>
|
|||
|
<version>5.8.34</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>cn.hutool</groupId>
|
|||
|
<artifactId>hutool-poi</artifactId>
|
|||
|
<version>5.8.34</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.apache.logging.log4j</groupId>
|
|||
|
<artifactId>log4j-api</artifactId>
|
|||
|
<version>2.23.1</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.apache.logging.log4j</groupId>
|
|||
|
<artifactId>log4j-core</artifactId>
|
|||
|
<version>2.23.1</version>
|
|||
|
</dependency>
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<finalName>${project.artifactId}</finalName>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-assembly-plugin</artifactId>
|
|||
|
<version>2.3</version>
|
|||
|
<configuration>
|
|||
|
<!--如果不想在打包的后缀加上assembly.xml中设置的id,可以加上下面的配置-->
|
|||
|
<appendAssemblyId>false</appendAssemblyId>
|
|||
|
<descriptorRefs>
|
|||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|||
|
</descriptorRefs>
|
|||
|
<archive>
|
|||
|
<manifest>
|
|||
|
<!-- 是否绑定依赖,将外部jar包依赖加入到classPath中 -->
|
|||
|
<!-- <addClasspath>true</addClasspath> -->
|
|||
|
<!-- 依赖前缀,与之前设置的文件夹路径要匹配 -->
|
|||
|
<!-- <classpathPrefix>lib/</classpathPrefix> -->
|
|||
|
<!-- 执行的主程序入口 -->
|
|||
|
<mainClass>com.dx.union.CheckLogin</mainClass>
|
|||
|
</manifest>
|
|||
|
</archive>
|
|||
|
</configuration>
|
|||
|
<executions>
|
|||
|
<execution>
|
|||
|
<id>make-assembly</id>
|
|||
|
<!--绑定的maven操作-->
|
|||
|
<phase>package</phase>
|
|||
|
<goals>
|
|||
|
<goal>assembly</goal>
|
|||
|
</goals>
|
|||
|
</execution>
|
|||
|
</executions>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
</build>
|
|||
|
|
|||
|
</project>
|