mirror of
https://github.com/Javen205/IJPay.git
synced 2026-05-07 05:45:58 +08:00
191 lines
6.8 KiB
XML
191 lines
6.8 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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<packaging>pom</packaging>
|
||
|
||
<groupId>com.github.javen205</groupId>
|
||
<artifactId>IJPay</artifactId>
|
||
<version>2.7.5</version>
|
||
<name>IJPay</name>
|
||
<description>IJPay 让支付触手可及(Easy Pay Library)</description>
|
||
<url>https://github.com/Javen205/IJPay</url>
|
||
|
||
<modules>
|
||
<module>IJPay-AliPay</module>
|
||
<module>IJPay-WxPay</module>
|
||
<module>IJPay-All</module>
|
||
<module>IJPay-Core</module>
|
||
<module>IJPay-QQ</module>
|
||
<module>IJPay-UnionPay</module>
|
||
<module>IJPay-JDPay</module>
|
||
<module>IJPay-PayPal</module>
|
||
<module>IJPay-XPay</module>
|
||
</modules>
|
||
|
||
<licenses>
|
||
<license>
|
||
<name>Mulan Permissive Software License,Version 1</name>
|
||
<url>https://license.coscl.org.cn/MulanPSL</url>
|
||
</license>
|
||
</licenses>
|
||
|
||
<scm>
|
||
<connection>scm:git:git@github.com:javen205/IJPay</connection>
|
||
<developerConnection>scm:git:git@github.com:javen205/IJPay</developerConnection>
|
||
<url>scm:git:git@github.com:javen205/IJPay</url>
|
||
</scm>
|
||
|
||
<issueManagement>
|
||
<system>Github Issue</system>
|
||
<url>https://github.com/javen205/IJPay/issues</url>
|
||
</issueManagement>
|
||
|
||
<developers>
|
||
<developer>
|
||
<name>Javen</name>
|
||
<email>javendev@126.com</email>
|
||
<organization>github</organization>
|
||
<organizationUrl>https://javen205.github.io/</organizationUrl>
|
||
</developer>
|
||
</developers>
|
||
|
||
<properties>
|
||
<jdk.version>1.8</jdk.version>
|
||
<junit.version>4.13.2</junit.version>
|
||
<hutool.version>5.6.7</hutool.version>
|
||
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<!-- 全局单元测试 -->
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>${junit.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<!-- huTool 工具包 -->
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-crypto</artifactId>
|
||
<version>${hutool.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-http</artifactId>
|
||
<version>${hutool.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-json</artifactId>
|
||
<version>${hutool.version}</version>
|
||
</dependency>
|
||
<!-- huTool 工具包 End -->
|
||
</dependencies>
|
||
<build>
|
||
<finalName>IJPay</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.1</version>
|
||
<configuration>
|
||
<source>${jdk.version}</source>
|
||
<target>${jdk.version}</target>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<version>3.1.1</version>
|
||
<executions>
|
||
<execution>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>jar</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>3.1.0</version>
|
||
<executions>
|
||
<execution>
|
||
<id>nexus-release</id>
|
||
<phase>package</phase>
|
||
<goals>
|
||
<goal>jar-no-fork</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<!--自动发布 Jar 到 Maven 仓库-->
|
||
<plugin>
|
||
<groupId>org.sonatype.plugins</groupId>
|
||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
<version>1.6.8</version>
|
||
<extensions>true</extensions>
|
||
<configuration>
|
||
<serverId>nexus-release</serverId>
|
||
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||
</configuration>
|
||
</plugin>
|
||
<!--测试覆盖率统计工具插件-->
|
||
<plugin>
|
||
<groupId>org.codehaus.mojo</groupId>
|
||
<artifactId>cobertura-maven-plugin</artifactId>
|
||
<version>2.7</version>
|
||
<configuration>
|
||
<formats>
|
||
<format>html</format>
|
||
<format>xml</format>
|
||
</formats>
|
||
<check/>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
|
||
<profiles>
|
||
<profile>
|
||
<id>release</id>
|
||
<build>
|
||
<plugins>
|
||
<!-- GPG -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-gpg-plugin</artifactId>
|
||
<version>1.6</version>
|
||
<executions>
|
||
<execution>
|
||
<id>nexus-release</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>sign</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<distributionManagement>
|
||
<snapshotRepository>
|
||
<id>nexus-release</id>
|
||
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||
</snapshotRepository>
|
||
<repository>
|
||
<id>nexus-release</id>
|
||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
</repository>
|
||
</distributionManagement>
|
||
</profile>
|
||
</profiles>
|
||
</project>
|