Skip to content

Commit 00d854e

Browse files
Release 5.2.0
1 parent a66d52f commit 00d854e

File tree

2 files changed

+97
-93
lines changed

2 files changed

+97
-93
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Add the following dependencies to your `pom.xml` file:
88
<dependency>
99
<groupId>io.jackey</groupId>
1010
<artifactId>jackey</artifactId>
11-
<version>5.2.0-SNAPSHOT</version>
11+
<version>5.2.0</version>
1212
</dependency>
1313
```
1414

pom.xml

+96-92
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<packaging>jar</packaging>
66
<groupId>io.jackey</groupId>
77
<artifactId>jackey</artifactId>
8-
<version>5.2.0-SNAPSHOT</version>
8+
<version>5.2.0</version>
99

1010
<name>jackey</name>
1111
<description>Java client for valkey.</description>
@@ -19,6 +19,20 @@
1919
</license>
2020
</licenses>
2121

22+
<developers>
23+
<developer>
24+
<name>yangbodong</name>
25+
<email>[email protected]</email>
26+
</developer>
27+
</developers>
28+
29+
<scm>
30+
<url>https://github.com/jackey-io/jackey</url>
31+
<connection>scm:https://github.com/jackey-io/jackey.git</connection>
32+
<developerConnection>scm:git:https://github.com/jackey-io/jackey.git</developerConnection>
33+
<tag>HEAD</tag>
34+
</scm>
35+
2236
<issueManagement>
2337
<system>github</system>
2438
<url>https://github.com/jackey-io/jackey/issues</url>
@@ -142,6 +156,17 @@
142156
</resource>
143157
</resources>
144158
<plugins>
159+
<plugin>
160+
<groupId>org.sonatype.central</groupId>
161+
<artifactId>central-publishing-maven-plugin</artifactId>
162+
<version>0.4.0</version>
163+
<extensions>true</extensions>
164+
<configuration>
165+
<publishingServerId>central</publishingServerId>
166+
<tokenAuth>true</tokenAuth>
167+
<autoPublish>true</autoPublish>
168+
</configuration>
169+
</plugin>
145170
<plugin>
146171
<groupId>org.apache.maven.plugins</groupId>
147172
<artifactId>maven-compiler-plugin</artifactId>
@@ -151,97 +176,76 @@
151176
<target>${java.version}</target>
152177
</configuration>
153178
</plugin>
179+
<plugin>
180+
<groupId>org.apache.maven.plugins</groupId>
181+
<artifactId>maven-source-plugin</artifactId>
182+
<version>3.3.0</version>
183+
<executions>
184+
<execution>
185+
<id>attach-sources</id>
186+
<phase>verify</phase>
187+
<goals>
188+
<goal>jar-no-fork</goal>
189+
</goals>
190+
</execution>
191+
</executions>
192+
</plugin>
193+
<plugin>
194+
<groupId>org.apache.maven.plugins</groupId>
195+
<artifactId>maven-surefire-plugin</artifactId>
196+
<version>3.2.5</version>
197+
<configuration>
198+
<excludes>
199+
<exclude>**/examples/*Example.java</exclude>
200+
<exclude>**/modules/*Test.java</exclude>
201+
</excludes>
202+
</configuration>
203+
</plugin>
204+
<plugin>
205+
<groupId>org.apache.maven.plugins</groupId>
206+
<artifactId>maven-javadoc-plugin</artifactId>
207+
<version>3.6.3</version>
208+
<executions>
209+
<execution>
210+
<id>attach-javadoc</id>
211+
<goals>
212+
<goal>jar</goal>
213+
</goals>
214+
</execution>
215+
</executions>
216+
<configuration>
217+
<stylesheet>java</stylesheet>
218+
<doclint>none</doclint>
219+
</configuration>
220+
</plugin>
221+
<plugin>
222+
<groupId>org.apache.maven.plugins</groupId>
223+
<artifactId>maven-gpg-plugin</artifactId>
224+
<version>3.1.0</version>
225+
<executions>
226+
<execution>
227+
<id>sign-artifacts</id>
228+
<phase>verify</phase>
229+
<goals>
230+
<goal>sign</goal>
231+
</goals>
232+
</execution>
233+
</executions>
234+
<configuration>
235+
<gpgArguments>
236+
<arg>--pinentry-mode</arg>
237+
<arg>loopback</arg>
238+
</gpgArguments>
239+
</configuration>
240+
</plugin>
241+
<plugin>
242+
<groupId>com.googlecode.maven-java-formatter-plugin</groupId>
243+
<artifactId>maven-java-formatter-plugin</artifactId>
244+
<version>0.4</version>
245+
<configuration>
246+
<configFile>${project.basedir}/hbase-formatter.xml</configFile>
247+
</configuration>
248+
</plugin>
154249
</plugins>
155250
</build>
156-
157-
<profiles>
158-
<profile>
159-
<id>release</id>
160-
<build>
161-
<plugins>
162-
<plugin>
163-
<groupId>org.sonatype.central</groupId>
164-
<artifactId>central-publishing-maven-plugin</artifactId>
165-
<version>0.4.0</version>
166-
<extensions>true</extensions>
167-
<configuration>
168-
<publishingServerId>central</publishingServerId>
169-
<tokenAuth>true</tokenAuth>
170-
<autoPublish>true</autoPublish>
171-
</configuration>
172-
</plugin>
173-
<plugin>
174-
<groupId>org.apache.maven.plugins</groupId>
175-
<artifactId>maven-source-plugin</artifactId>
176-
<version>3.3.0</version>
177-
<executions>
178-
<execution>
179-
<id>attach-sources</id>
180-
<phase>verify</phase>
181-
<goals>
182-
<goal>jar-no-fork</goal>
183-
</goals>
184-
</execution>
185-
</executions>
186-
</plugin>
187-
<plugin>
188-
<groupId>org.apache.maven.plugins</groupId>
189-
<artifactId>maven-surefire-plugin</artifactId>
190-
<version>3.2.5</version>
191-
<configuration>
192-
<excludes>
193-
<exclude>**/examples/*Example.java</exclude>
194-
<exclude>**/modules/*Test.java</exclude>
195-
</excludes>
196-
</configuration>
197-
</plugin>
198-
<plugin>
199-
<groupId>org.apache.maven.plugins</groupId>
200-
<artifactId>maven-javadoc-plugin</artifactId>
201-
<version>3.6.3</version>
202-
<executions>
203-
<execution>
204-
<id>attach-javadoc</id>
205-
<goals>
206-
<goal>jar</goal>
207-
</goals>
208-
</execution>
209-
</executions>
210-
<configuration>
211-
<stylesheet>java</stylesheet>
212-
<doclint>none</doclint>
213-
</configuration>
214-
</plugin>
215-
<plugin>
216-
<groupId>org.apache.maven.plugins</groupId>
217-
<artifactId>maven-gpg-plugin</artifactId>
218-
<version>3.1.0</version>
219-
<executions>
220-
<execution>
221-
<id>sign-artifacts</id>
222-
<phase>verify</phase>
223-
<goals>
224-
<goal>sign</goal>
225-
</goals>
226-
</execution>
227-
</executions>
228-
<configuration>
229-
<gpgArguments>
230-
<arg>--pinentry-mode</arg>
231-
<arg>loopback</arg>
232-
</gpgArguments>
233-
</configuration>
234-
</plugin>
235-
<plugin>
236-
<groupId>com.googlecode.maven-java-formatter-plugin</groupId>
237-
<artifactId>maven-java-formatter-plugin</artifactId>
238-
<version>0.4</version>
239-
<configuration>
240-
<configFile>${project.basedir}/hbase-formatter.xml</configFile>
241-
</configuration>
242-
</plugin>
243-
</plugins>
244-
</build>
245-
</profile>
246-
</profiles>
247251
</project>

0 commit comments

Comments
 (0)