202 lines
7.1 KiB
Plaintext
202 lines
7.1 KiB
Plaintext
<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>
|
||
<groupId>com.alipay.sdk</groupId>
|
||
<artifactId>alipay-sdk-java</artifactId>
|
||
<packaging>jar</packaging>
|
||
<version>4.35.79.ALL</version>
|
||
<name>alipay-sdk-java</name>
|
||
|
||
<url>https://open.alipay.com</url>
|
||
<description>Alipay openapi SDK for Java
|
||
|
||
|
||
Copyright © 2018 杭州蚂蚁金服
|
||
All rights reserved.
|
||
|
||
版权所有 (C)杭州蚂蚁金服
|
||
|
||
http://open.alipay.com
|
||
</description>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<distributionManagement>
|
||
<snapshotRepository>
|
||
<id>sonatype-nexus-snapshots</id>
|
||
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||
</snapshotRepository>
|
||
<repository>
|
||
<id>sonatype-nexus-staging</id>
|
||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
</repository>
|
||
</distributionManagement>
|
||
|
||
<licenses>
|
||
<license>
|
||
<name>The Apache License, Version 2.0</name>
|
||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
</license>
|
||
</licenses>
|
||
|
||
<scm>
|
||
<connection>scm:git:git@github.com:alipay/alipay-sdk-java-all.git</connection>
|
||
<developerConnection>scm:git:ssh://github.com:alipay/alipay-sdk-java-all.git</developerConnection>
|
||
<url>http://github.com/alipay/alipay-sdk-java-all/tree/master</url>
|
||
</scm>
|
||
|
||
<developers>
|
||
<developer>
|
||
<id>antopen</id>
|
||
<name>antopen</name>
|
||
<email>antopen@aliyun.com</email>
|
||
</developer>
|
||
</developers>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
<version>1.1.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.83_noneautotype</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.bouncycastle</groupId>
|
||
<artifactId>bcprov-jdk15on</artifactId>
|
||
<version>1.62</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>dom4j</groupId>
|
||
<artifactId>dom4j</artifactId>
|
||
<version>1.6.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.squareup.okhttp3</groupId>
|
||
<artifactId>okhttp</artifactId>
|
||
<version>3.12.13</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.12</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>2.3.2</version>
|
||
<configuration>
|
||
<source>1.6</source>
|
||
<target>1.6</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-jar-plugin</artifactId>
|
||
<version>2.3.2</version>
|
||
<configuration>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>2.8.2</version>
|
||
<executions>
|
||
<execution>
|
||
<id>default-deploy</id>
|
||
<phase>deploy</phase>
|
||
<goals>
|
||
<goal>deploy</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.sonatype.plugins</groupId>
|
||
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||
<version>1.6.7</version>
|
||
<extensions>true</extensions>
|
||
<configuration>
|
||
<serverId>ossrh</serverId>
|
||
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-scm-plugin</artifactId>
|
||
<version>1.8.1</version>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-source-plugin</artifactId>
|
||
<version>2.1.2</version>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-sources</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>jar-no-fork</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-javadoc-plugin</artifactId>
|
||
<version>2.9.1</version>
|
||
<configuration>
|
||
<aggregate>true</aggregate>
|
||
<charset>UTF-8</charset>
|
||
<encoding>UTF-8</encoding>
|
||
<docencoding>UTF-8</docencoding>
|
||
<additionalparam>-Xdoclint:none</additionalparam>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>attach-javadocs</id>
|
||
<goals>
|
||
<goal>jar</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-gpg-plugin</artifactId>
|
||
<version>1.6</version>
|
||
<executions>
|
||
<execution>
|
||
<id>sign-artifacts</id>
|
||
<phase>verify</phase>
|
||
<goals>
|
||
<goal>sign</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</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>
|
||
</project> |