203 lines
7.2 KiB
Plaintext
203 lines
7.2 KiB
Plaintext
![]() |
<?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/xsd/maven-4.0.0.xsd">
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
|
|||
|
<groupId>com.aliyun</groupId>
|
|||
|
<artifactId>tea-rpc-util</artifactId>
|
|||
|
<version>0.0.9</version>
|
|||
|
<packaging>jar</packaging>
|
|||
|
|
|||
|
<name>common</name>
|
|||
|
<description>Aliyun Common for Java
|
|||
|
|
|||
|
Copyright (C) Alibaba Cloud Computing
|
|||
|
All rights reserved.
|
|||
|
|
|||
|
版权所有 (C)阿里云计算有限公司
|
|||
|
|
|||
|
http://www.aliyun.com
|
|||
|
</description>
|
|||
|
<url>http://www.aliyun.com</url>
|
|||
|
|
|||
|
<licenses>
|
|||
|
<license>
|
|||
|
<name>The Apache License, Version 2.0</name>
|
|||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|||
|
</license>
|
|||
|
</licenses>
|
|||
|
|
|||
|
<developers>
|
|||
|
<developer>
|
|||
|
<id>aliyunproducts</id>
|
|||
|
<name>Aliyun SDK</name>
|
|||
|
<email>aliyunsdk@aliyun.com</email>
|
|||
|
</developer>
|
|||
|
</developers>
|
|||
|
|
|||
|
<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>
|
|||
|
|
|||
|
<scm>
|
|||
|
<connection></connection>
|
|||
|
<developerConnection></developerConnection>
|
|||
|
<url></url>
|
|||
|
</scm>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>com.aliyun</groupId>
|
|||
|
<artifactId>tea</artifactId>
|
|||
|
<version>0.1.3</version>
|
|||
|
<optional>true</optional>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>com.aliyun</groupId>
|
|||
|
<artifactId>pop-rpc-client</artifactId>
|
|||
|
<version>0.0.2</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>junit</groupId>
|
|||
|
<artifactId>junit</artifactId>
|
|||
|
<version>4.11</version>
|
|||
|
<scope>test</scope>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>com.aliyun</groupId>
|
|||
|
<artifactId>credentials-java</artifactId>
|
|||
|
<version>0.0.1</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>dom4j</groupId>
|
|||
|
<artifactId>dom4j</artifactId>
|
|||
|
<version>1.6.1</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>org.mockito</groupId>
|
|||
|
<artifactId>mockito-core</artifactId>
|
|||
|
<version>3.0.0</version>
|
|||
|
<scope>test</scope>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>javax.xml.bind</groupId>
|
|||
|
<artifactId>jaxb-api</artifactId>
|
|||
|
<version>2.3.0</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>com.sun.xml.bind</groupId>
|
|||
|
<artifactId>jaxb-core</artifactId>
|
|||
|
<version>2.3.0</version>
|
|||
|
</dependency>
|
|||
|
<dependency>
|
|||
|
<groupId>com.sun.xml.bind</groupId>
|
|||
|
<artifactId>jaxb-impl</artifactId>
|
|||
|
<version>2.3.0</version>
|
|||
|
</dependency>
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<resources>
|
|||
|
<resource>
|
|||
|
<directory>src/main/resources</directory>
|
|||
|
<filtering>true</filtering>
|
|||
|
<includes>
|
|||
|
<include>project.properties</include>
|
|||
|
</includes>
|
|||
|
</resource>
|
|||
|
</resources>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-compiler-plugin</artifactId>
|
|||
|
<version>3.6.1</version>
|
|||
|
<configuration>
|
|||
|
<source>8</source>
|
|||
|
<target>8</target>
|
|||
|
</configuration>
|
|||
|
</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.sonatype.plugins</groupId>
|
|||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|||
|
<version>1.6.3</version>
|
|||
|
<extensions>true</extensions>
|
|||
|
<configuration>
|
|||
|
<serverId>sonatype-nexus-staging</serverId>
|
|||
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
|||
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|||
|
<version>3.1.1</version>
|
|||
|
<configuration>
|
|||
|
<encoding>UTF-8</encoding>
|
|||
|
<doclint>none</doclint>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-surefire-plugin</artifactId>
|
|||
|
<version>2.22.1</version>
|
|||
|
<configuration>
|
|||
|
<systemPropertyVariables>
|
|||
|
<jacoco-agent.destfile>${project.build.directory}/coverage.exec</jacoco-agent.destfile>
|
|||
|
</systemPropertyVariables>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
<plugin>
|
|||
|
<groupId>org.jacoco</groupId>
|
|||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|||
|
<version>0.8.4</version>
|
|||
|
<executions>
|
|||
|
<execution>
|
|||
|
<id>default-instrument</id>
|
|||
|
<goals>
|
|||
|
<goal>instrument</goal>
|
|||
|
</goals>
|
|||
|
</execution>
|
|||
|
<execution>
|
|||
|
<id>default-restore-instrumented-classes</id>
|
|||
|
<!-- default phase is pre-package, move up here -->
|
|||
|
<phase>test</phase>
|
|||
|
<goals>
|
|||
|
<goal>restore-instrumented-classes</goal>
|
|||
|
</goals>
|
|||
|
</execution>
|
|||
|
<!-- keep after maven-surefire-plugin, report will use coverage.exec generated by maven-surefire-plugin-->
|
|||
|
<execution>
|
|||
|
<id>report</id>
|
|||
|
<phase>test</phase>
|
|||
|
<goals>
|
|||
|
<goal>report</goal>
|
|||
|
</goals>
|
|||
|
<configuration>
|
|||
|
<dataFile>${project.build.directory}/coverage.exec</dataFile>
|
|||
|
</configuration>
|
|||
|
</execution>
|
|||
|
</executions>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
</build>
|
|||
|
</project>
|