Skip to content

Commit f8ac38d

Browse files
committed
chore: 升级版本到1.0.3
1 parent fd26b7a commit f8ac38d

File tree

2 files changed

+135
-7
lines changed

2 files changed

+135
-7
lines changed

ddes-open-sdk/pom.xml

Lines changed: 134 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,74 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
6-
<parent>
7-
<groupId>com.xiaoju.sdk</groupId>
8-
<artifactId>ddes-openapi-sdk-java</artifactId>
9-
<version>1.0.1</version>
10-
</parent>
116

12-
<groupId>com.xiaoju</groupId>
7+
<groupId>com.xiaojukeji.esapi</groupId>
138
<artifactId>ddes-open-sdk</artifactId>
9+
<version>1.0.3</version>
10+
11+
<name>ddes-open-sdk</name>
12+
<description>滴滴企业级开放平台接口 SDK</description>
13+
<url>https://github.com/didi/ddes-openapi-sdk-java.git</url>
14+
15+
<!-- 许可证(必须) -->
16+
<licenses>
17+
<license>
18+
<name>Apache License 2.0</name>
19+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
23+
24+
<!-- SCM 代码仓库地址 -->
25+
<scm>
26+
<url>https://github.com/didi/ddes-openapi-sdk-java.git</url>
27+
<connection>scm:git:git@github.com:didi/ddes-openapi-sdk-java.git</connection>
28+
</scm>
29+
30+
<distributionManagement>
31+
<repository>
32+
<id>central</id>
33+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
34+
</repository>
35+
<snapshotRepository>
36+
<id>snapshots</id>
37+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
38+
</snapshotRepository>
39+
</distributionManagement>
40+
41+
42+
<developers>
43+
<developer>
44+
<name>liqinglong</name>
45+
<email>obalee20@gmail.com</email>
46+
<roles>
47+
<role>Developer</role>
48+
</roles>
49+
<timezone>+8</timezone>
50+
</developer>
51+
</developers>
52+
53+
<issueManagement>
54+
<system>github</system>
55+
<url>https://github.com/didi/ddes-openapi-sdk-java/issues</url>
56+
</issueManagement>
1457

1558
<properties>
1659
<maven.compiler.source>8</maven.compiler.source>
1760
<maven.compiler.target>8</maven.compiler.target>
1861
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62+
63+
<java.version>1.8</java.version>
64+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
65+
<jackson-version>2.14.1</jackson-version>
66+
<jackson-databind-version>2.14.1</jackson-databind-version>
67+
<jackson-databind-nullable-version>0.2.6</jackson-databind-nullable-version>
68+
<lombok.version>1.18.30</lombok.version>
69+
<cglib-nodep.version>3.3.0</cglib-nodep.version>
70+
<okhttp.version>3.14.9</okhttp.version>
71+
<spock.version>1.3-groovy-2.5</spock.version>
72+
<spring.version>5.2.12.RELEASE</spring.version>
73+
<slf4j.version>1.7.30</slf4j.version>
1974
</properties>
2075

2176
<dependencies>
@@ -92,4 +147,77 @@
92147
</dependency>
93148
</dependencies>
94149

150+
<repositories>
151+
<repository>
152+
<id>central</id>
153+
<url>https://repo.maven.apache.org/maven2</url>
154+
<releases>
155+
<enabled>true</enabled>
156+
</releases>
157+
<snapshots>
158+
<enabled>false</enabled>
159+
</snapshots>
160+
</repository>
161+
</repositories>
162+
163+
<build>
164+
<plugins>
165+
<plugin>
166+
<groupId>org.sonatype.central</groupId>
167+
<artifactId>central-publishing-maven-plugin</artifactId>
168+
<version>0.8.0</version>
169+
<extensions>true</extensions>
170+
<configuration>
171+
<publishingServerId>central</publishingServerId>
172+
<autoPublish>true</autoPublish>
173+
</configuration>
174+
</plugin>
175+
176+
<plugin>
177+
<groupId>org.apache.maven.plugins</groupId>
178+
<artifactId>maven-gpg-plugin</artifactId>
179+
<version>3.0.1</version>
180+
<executions>
181+
<execution>
182+
<id>sign-artifacts</id>
183+
<phase>verify</phase>
184+
<goals>
185+
<goal>sign</goal>
186+
</goals>
187+
</execution>
188+
</executions>
189+
</plugin>
190+
191+
<!-- 附带源码 jar -->
192+
<plugin>
193+
<groupId>org.apache.maven.plugins</groupId>
194+
<artifactId>maven-source-plugin</artifactId>
195+
<version>3.2.1</version>
196+
<executions>
197+
<execution>
198+
<id>attach-sources</id>
199+
<goals>
200+
<goal>jar</goal>
201+
</goals>
202+
</execution>
203+
</executions>
204+
</plugin>
205+
206+
<!-- 附带 javadoc jar -->
207+
<plugin>
208+
<groupId>org.apache.maven.plugins</groupId>
209+
<artifactId>maven-javadoc-plugin</artifactId>
210+
<version>3.3.1</version>
211+
<executions>
212+
<execution>
213+
<id>attach-javadocs</id>
214+
<goals>
215+
<goal>jar</goal>
216+
</goals>
217+
</execution>
218+
</executions>
219+
</plugin>
220+
</plugins>
221+
</build>
222+
95223
</project>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<module>sample</module>
1010
<module>ddes-open-sdk</module>
1111
</modules>
12-
<version>1.0.1</version>
12+
<version>1.0.3</version>
1313

1414
<description>管理API对接SDK(2024版)https://opendocs.xiaojukeji.com/version2024</description>
1515

0 commit comments

Comments
 (0)