Skip to content

Commit db8c7e4

Browse files
committed
release v14.0.1
1 parent 104f259 commit db8c7e4

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

nbactions.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<displayName>Deploy</displayName>
66
<goals>
77
<goal>deploy</goal>
8+
<goal>-DskipTests</goal>
89
</goals>
910
</action>
1011
</actions>

pom.xml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.aarboard.nextcloud</groupId>
55
<artifactId>nextcloud-api</artifactId>
6-
<version>14.0.0</version>
6+
<version>14.0.1</version>
77
<packaging>jar</packaging>
88
<properties>
99
<!-- compile time dependencies -->
@@ -21,6 +21,7 @@
2121
<jaxb-impl.version>3.0.2</jaxb-impl.version>
2222

2323
<!-- test dependencies versions -->
24+
<skipTests>true</skipTests>
2425
<slf4j-simple.version>${slf4j-api.version}</slf4j-simple.version>
2526
<jaxb-runtime.version>4.0.6</jaxb-runtime.version>
2627
<junit.version>4.13.2</junit.version>
@@ -35,6 +36,7 @@
3536
<templating-maven-plugin.version>1.0.0</templating-maven-plugin.version>
3637
<maven-deploy-plugin.version>3.1.4</maven-deploy-plugin.version>
3738
<nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version>
39+
<central-publishing-maven-plugin>0.9.0</central-publishing-maven-plugin>
3840
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
3941
<maven-javadoc-plugin.version>3.12.0</maven-javadoc-plugin.version>
4042
<maven-scm-provider-gitexe.version>2.2.1</maven-scm-provider-gitexe.version>
@@ -321,14 +323,12 @@
321323
</dependencies>
322324
</plugin>
323325
<plugin>
324-
<groupId>org.sonatype.plugins</groupId>
325-
<artifactId>nexus-staging-maven-plugin</artifactId>
326-
<version>${nexus-staging-maven-plugin.version}</version>
326+
<groupId>org.sonatype.central</groupId>
327+
<artifactId>central-publishing-maven-plugin</artifactId>
328+
<version>0.9.0</version>
327329
<extensions>true</extensions>
328330
<configuration>
329-
<serverId>ossrh</serverId>
330-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
331-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
331+
<publishingServerId>ossrh</publishingServerId>
332332
</configuration>
333333
</plugin>
334334
<plugin>
@@ -379,6 +379,9 @@
379379
<artifactId>maven-surefire-plugin</artifactId>
380380
<version>${maven-surefire-plugin.version}</version>
381381
<configuration>
382+
<configuration>
383+
<skipTests>${skipTests}</skipTests>
384+
</configuration>
382385
<systemProperties>
383386
<property>
384387
<name>nextcloud.api.test.servername</name>

0 commit comments

Comments
 (0)