Skip to content

Commit 4463910

Browse files
committed
update version to 5.1.10.
1 parent 1cb2768 commit 4463910

File tree

5 files changed

+108
-108
lines changed

5 files changed

+108
-108
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
## 1. 集成
1616
引入sdk包
1717
```xml
18-
<!--以5.1.11版本为例-->
18+
<!--以5.1.10版本为例-->
1919
<dependencies>
2020
<!-- jiguang-sdk -->
2121
<dependency>
2222
<groupId>io.github.jpush</groupId>
2323
<artifactId>jiguang-sdk</artifactId>
24-
<version>5.1.11</version>
24+
<version>5.1.10</version>
2525
</dependency>
2626
</dependencies>
2727
```

example-for-spring/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>io.github.jpush</groupId>
1515
<artifactId>example-for-spring</artifactId>
16-
<version>5.1.11</version>
16+
<version>5.1.10</version>
1717

1818
<properties>
1919
<maven.compiler.source>8</maven.compiler.source>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>io.github.jpush</groupId>
2828
<artifactId>jiguang-sdk</artifactId>
29-
<version>5.1.11</version>
29+
<version>5.1.10</version>
3030
</dependency>
3131
<!-- lombok -->
3232
<dependency>

example-for-spring/target/classes/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ logging:
1212
jiguang:
1313
api:
1414
# 此为演示数据,请替换成真实数据
15-
app-key: de5b45e0ded8292281cbb3cf
15+
app-key: de5b45e0de18292281cbb3cf
1616
master-secret: 37e2077739009a532e71cce4
1717
dev-key: c2dc75e97486529205528b23
1818
dev-secret: d219e2f001df2fe4f08b6754

jiguang-sdk/pom.xml

Lines changed: 2 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<parent>
88
<groupId>io.github.jpush</groupId>
99
<artifactId>jiguang-sdk-java</artifactId>
10-
<version>5.1.11</version>
10+
<version>5.1.10</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

1414
<groupId>io.github.jpush</groupId>
1515
<artifactId>jiguang-sdk</artifactId>
16-
<version>5.1.11</version>
16+
<version>5.1.10</version>
1717
<packaging>jar</packaging>
1818

1919
<properties>
@@ -75,104 +75,4 @@
7575
</dependency>
7676
</dependencies>
7777

78-
<name>Jiguang SDK For Rest Api</name>
79-
<description>Jiguang SDK For Rest Api</description>
80-
<url>https://github.com/jpush/jiguang-sdk-java</url>
81-
82-
<licenses>
83-
<license>
84-
<name>The Apache Software License, Version 2.0</name>
85-
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
86-
</license>
87-
</licenses>
88-
89-
<developers>
90-
<developer>
91-
<name>wicked-tc130</name>
92-
<email>[email protected]</email>
93-
<organization>jpush</organization>
94-
<organizationUrl>https://github.com/jpush</organizationUrl>
95-
</developer>
96-
</developers>
97-
98-
<scm>
99-
<url>https://github.com/jpush/jiguang-sdk-java</url>
100-
<connection>scm:git:[email protected]:jpush/jiguang-sdk-java.git</connection>
101-
<developerConnection>scm:git:[email protected]:jpush/jiguang-sdk-java.git</developerConnection>
102-
</scm>
103-
104-
<build>
105-
<plugins>
106-
<plugin>
107-
<groupId>org.sonatype.plugins</groupId>
108-
<artifactId>nexus-staging-maven-plugin</artifactId>
109-
<version>1.7.0</version>
110-
<extensions>true</extensions>
111-
<configuration>
112-
<serverId>ossrh</serverId>
113-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
114-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
115-
</configuration>
116-
</plugin>
117-
<plugin>
118-
<groupId>org.apache.maven.plugins</groupId>
119-
<artifactId>maven-source-plugin</artifactId>
120-
<version>2.2.1</version>
121-
<executions>
122-
<execution>
123-
<id>attach-sources</id>
124-
<goals>
125-
<goal>jar-no-fork</goal>
126-
</goals>
127-
</execution>
128-
</executions>
129-
</plugin>
130-
<plugin>
131-
<groupId>org.apache.maven.plugins</groupId>
132-
<artifactId>maven-javadoc-plugin</artifactId>
133-
<version>2.9.1</version>
134-
<executions>
135-
<execution>
136-
<id>attach-javadocs</id>
137-
<goals>
138-
<goal>jar</goal>
139-
</goals>
140-
</execution>
141-
</executions>
142-
</plugin>
143-
<plugin>
144-
<groupId>org.apache.maven.plugins</groupId>
145-
<artifactId>maven-gpg-plugin</artifactId>
146-
<version>1.5</version>
147-
<executions>
148-
<execution>
149-
<id>sign-artifacts</id>
150-
<phase>verify</phase>
151-
<goals>
152-
<goal>sign</goal>
153-
</goals>
154-
<configuration>
155-
<!-- Prevent gpg from using pinentry programs -->
156-
<gpgArguments>
157-
<arg>--pinentry-mode</arg>
158-
<arg>loopback</arg>
159-
</gpgArguments>
160-
</configuration>
161-
</execution>
162-
</executions>
163-
</plugin>
164-
</plugins>
165-
</build>
166-
167-
<distributionManagement>
168-
<snapshotRepository>
169-
<id>ossrh</id>
170-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
171-
</snapshotRepository>
172-
<repository>
173-
<id>ossrh</id>
174-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
175-
</repository>
176-
</distributionManagement>
177-
17878
</project>

pom.xml

Lines changed: 101 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@
66

77
<groupId>io.github.jpush</groupId>
88
<artifactId>jiguang-sdk-java</artifactId>
9-
<version>5.1.11</version>
9+
<version>5.1.10</version>
1010
<packaging>pom</packaging>
1111

12+
<name>Jiguang SDK For Rest Api</name>
13+
<description>Jiguang SDK For Rest Api</description>
14+
<url>https://github.com/jpush/jiguang-sdk-java</url>
15+
1216
<modules>
1317
<module>example-for-spring</module>
1418
<module>jiguang-sdk</module>
@@ -20,4 +24,100 @@
2024
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2125
</properties>
2226

27+
<licenses>
28+
<license>
29+
<name>The Apache Software License, Version 2.0</name>
30+
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
31+
</license>
32+
</licenses>
33+
34+
<developers>
35+
<developer>
36+
<name>wicked-tc130</name>
37+
<email>[email protected]</email>
38+
<organization>jpush</organization>
39+
<organizationUrl>https://github.com/jpush</organizationUrl>
40+
</developer>
41+
</developers>
42+
43+
<scm>
44+
<url>https://github.com/jpush/jiguang-sdk-java</url>
45+
<connection>scm:git:[email protected]:jpush/jiguang-sdk-java.git</connection>
46+
<developerConnection>scm:git:[email protected]:jpush/jiguang-sdk-java.git</developerConnection>
47+
</scm>
48+
49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.sonatype.plugins</groupId>
53+
<artifactId>nexus-staging-maven-plugin</artifactId>
54+
<version>1.7.0</version>
55+
<extensions>true</extensions>
56+
<configuration>
57+
<serverId>ossrh</serverId>
58+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
59+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
60+
</configuration>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-source-plugin</artifactId>
65+
<version>2.2.1</version>
66+
<executions>
67+
<execution>
68+
<id>attach-sources</id>
69+
<goals>
70+
<goal>jar-no-fork</goal>
71+
</goals>
72+
</execution>
73+
</executions>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-javadoc-plugin</artifactId>
78+
<version>2.9.1</version>
79+
<executions>
80+
<execution>
81+
<id>attach-javadocs</id>
82+
<goals>
83+
<goal>jar</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-gpg-plugin</artifactId>
91+
<version>1.5</version>
92+
<executions>
93+
<execution>
94+
<id>sign-artifacts</id>
95+
<phase>verify</phase>
96+
<goals>
97+
<goal>sign</goal>
98+
</goals>
99+
<configuration>
100+
<!-- Prevent gpg from using pinentry programs -->
101+
<gpgArguments>
102+
<arg>--pinentry-mode</arg>
103+
<arg>loopback</arg>
104+
</gpgArguments>
105+
</configuration>
106+
</execution>
107+
</executions>
108+
</plugin>
109+
</plugins>
110+
</build>
111+
112+
<distributionManagement>
113+
<snapshotRepository>
114+
<id>ossrh</id>
115+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
116+
</snapshotRepository>
117+
<repository>
118+
<id>ossrh</id>
119+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
120+
</repository>
121+
</distributionManagement>
122+
23123
</project>

0 commit comments

Comments
 (0)