1 Star 0 Fork 3.3K

坏熊猫@艺-异-亦 / IJPay

forked from Javen / IJPay 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 6.47 KB
一键复制 编辑 原始数据 按行查看 历史
Javen 提交于 2019-12-08 21:23 . :bookmark:2.4.0 release ^_^
<?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.4.0</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>
</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.7</jdk.version>
<junit.version>4.12</junit.version>
<hutool.version>5.0.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>
<!-- 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.7</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.5</version>
<executions>
<execution>
<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>
Java
1
https://gitee.com/ywm_wto30/IJPay.git
git@gitee.com:ywm_wto30/IJPay.git
ywm_wto30
IJPay
IJPay
master

搜索帮助