1+ <?xml version =" 1.0" ?>
2+ <project xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <groupId >com.jdcloud.sdk</groupId >
7+ <artifactId >charge</artifactId >
8+ <version >0.2.0</version >
9+ <packaging >jar</packaging >
10+ <name >charge</name >
11+ <url >http://www.jdcloud.com</url >
12+ <description >JDCLOUD Open API SDK for Java</description >
13+
14+ <properties >
15+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
16+ </properties >
17+
18+ <distributionManagement >
19+ <snapshotRepository >
20+ <id >ossrh</id >
21+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
22+ </snapshotRepository >
23+ <repository >
24+ <id >ossrh</id >
25+ <url >https://oss.sonatype.org/service/local/staging/deploy/maven2/</url >
26+ </repository >
27+ </distributionManagement >
28+
29+ <licenses >
30+ <license >
31+ <name ></name >
32+ <url ></url >
33+ <distribution ></distribution >
34+ </license >
35+ </licenses >
36+ <scm >
37+ <url >https://github.com/jdcloud-api/jdcloud-sdk-java</url >
38+ <connection >https://github.com/jdcloud-api/jdcloud-sdk-java.git</connection >
39+ </scm >
40+ <developers >
41+ <developer >
42+ <id >jdcloud developers</id >
43+ <name >JDCLOUD SDK</name >
44+ <email >jdcloud-api@jd.com</email >
45+ </developer >
46+ </developers >
47+
48+ <dependencies >
49+ <dependency >
50+ <groupId >com.jdcloud.sdk</groupId >
51+ <artifactId >core</artifactId >
52+ <version >1.0.0</version >
53+ </dependency >
54+ </dependencies >
55+
56+ <build >
57+ <plugins >
58+ <plugin >
59+ <groupId >org.sonatype.plugins</groupId >
60+ <artifactId >nexus-staging-maven-plugin</artifactId >
61+ <version >1.6.3</version >
62+ <extensions >true</extensions >
63+ <configuration >
64+ <serverId >ossrh</serverId >
65+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
66+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
67+ </configuration >
68+ </plugin >
69+ <plugin >
70+ <groupId >org.apache.maven.plugins</groupId >
71+ <artifactId >maven-compiler-plugin</artifactId >
72+ <configuration >
73+ <source >1.7</source >
74+ <target >1.7</target >
75+ <encoding >UTF-8</encoding >
76+ </configuration >
77+ </plugin >
78+ <plugin >
79+ <groupId >org.apache.maven.plugins</groupId >
80+ <artifactId >maven-source-plugin</artifactId >
81+ <version >2.2.1</version >
82+ <executions >
83+ <execution >
84+ <id >attach-sources</id >
85+ <goals >
86+ <goal >jar-no-fork</goal >
87+ </goals >
88+ </execution >
89+ </executions >
90+ </plugin >
91+ <plugin >
92+ <groupId >org.apache.maven.plugins</groupId >
93+ <artifactId >maven-javadoc-plugin</artifactId >
94+ <version >2.9.1</version >
95+ <executions >
96+ <execution >
97+ <id >attach-javadocs</id >
98+ <goals >
99+ <goal >jar</goal >
100+ </goals >
101+ </execution >
102+ </executions >
103+ </plugin >
104+ <plugin >
105+ <groupId >org.apache.maven.plugins</groupId >
106+ <artifactId >maven-gpg-plugin</artifactId >
107+ <version >1.5</version >
108+ <executions >
109+ <execution >
110+ <id >sign-artifacts</id >
111+ <phase >verify</phase >
112+ <goals >
113+ <goal >sign</goal >
114+ </goals >
115+ </execution >
116+ </executions >
117+ </plugin >
118+ </plugins >
119+ </build >
120+ </project >
0 commit comments