Skip to content

Commit 7462000

Browse files
committed
Bump version
1 parent adf5523 commit 7462000

3 files changed

Lines changed: 12 additions & 22 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
fail-fast: false
19-
max-parallel: 1
19+
max-parallel: 2
2020
matrix:
2121
jdk: ["8", "11", "17", "21"]
2222

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add the following dependency to your pom.xml:
1111
<dependency>
1212
<groupId>com.cloudconvert</groupId>
1313
<artifactId>cloudconvert-java</artifactId>
14-
<version>1.2.1</version>
14+
<version>1.2.2</version>
1515
</dependency>
1616
```
1717

pom.xml

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>com.cloudconvert</groupId>
99
<artifactId>cloudconvert-java</artifactId>
10-
<version>1.2.1</version>
10+
<version>1.2.2</version>
1111

1212
<name>cloudconvert-java</name>
1313
<description>CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.</description>
@@ -37,16 +37,6 @@
3737
<tag>HEAD</tag>
3838
</scm>
3939

40-
<distributionManagement>
41-
<snapshotRepository>
42-
<id>ossrh</id>
43-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
44-
</snapshotRepository>
45-
<repository>
46-
<id>ossrh</id>
47-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
48-
</repository>
49-
</distributionManagement>
5040

5141
<properties>
5242
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -73,7 +63,7 @@
7363
<throwing-function.version>1.5.0</throwing-function.version>
7464

7565
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
76-
<nexus-staging-plugin.version>1.6.7</nexus-staging-plugin.version>
66+
<central-publishing-maven-plugin.version>0.7.0</central-publishing-maven-plugin.version>
7767
<maven-source-plugin.version>3.1.0</maven-source-plugin.version>
7868
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
7969
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
@@ -203,18 +193,19 @@
203193
<groups>${test.groups}</groups>
204194
</configuration>
205195
</plugin>
196+
206197
<plugin>
207-
<groupId>org.sonatype.plugins</groupId>
208-
<artifactId>nexus-staging-maven-plugin</artifactId>
209-
<version>${nexus-staging-plugin.version}</version>
198+
<groupId>org.sonatype.central</groupId>
199+
<artifactId>central-publishing-maven-plugin</artifactId>
200+
<version>${central-publishing-maven-plugin.version}</version>
210201
<extensions>true</extensions>
211202
<configuration>
212-
<serverId>ossrh</serverId>
213-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
214-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
203+
<publishingServerId>central</publishingServerId>
204+
<autoPublish>true</autoPublish>
215205
</configuration>
216206
</plugin>
217207

208+
218209
<plugin>
219210
<groupId>org.apache.maven.plugins</groupId>
220211
<artifactId>maven-source-plugin</artifactId>
@@ -246,7 +237,6 @@
246237
</execution>
247238
</executions>
248239
</plugin>
249-
250240
<plugin>
251241
<groupId>org.apache.maven.plugins</groupId>
252242
<artifactId>maven-gpg-plugin</artifactId>
@@ -263,7 +253,7 @@
263253
<configuration>
264254

265255
</configuration>
266-
</plugin>
256+
</plugin>
267257
</plugins>
268258
</build>
269259
</project>

0 commit comments

Comments
 (0)