Skip to content

Commit 68d87db

Browse files
authored
Merge pull request #173 from funfried/release/1.14.x
Fixed deployment to Maven central
2 parents 407bae3 + eb62d88 commit 68d87db

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,23 @@
415415
<artifactId>maven-antrun-plugin</artifactId>
416416
<version>3.0.0</version>
417417
</plugin>
418+
<plugin>
419+
<groupId>org.sonatype.plugins</groupId>
420+
<artifactId>nexus-staging-maven-plugin</artifactId>
421+
<version>1.6.8</version>
422+
<configuration>
423+
<serverId>sonatype-nexus-staging</serverId>
424+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
425+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
426+
</configuration>
427+
<dependencies>
428+
<dependency>
429+
<groupId>com.thoughtworks.xstream</groupId>
430+
<artifactId>xstream</artifactId>
431+
<version>1.4.15</version> <!-- apparently this needs to be exactly this version -->
432+
</dependency>
433+
</dependencies>
434+
</plugin>
418435
<plugin>
419436
<groupId>org.codehaus.mojo</groupId>
420437
<artifactId>buildnumber-maven-plugin</artifactId>
@@ -629,6 +646,11 @@
629646
</archive>
630647
</configuration>
631648
</plugin>
649+
<plugin>
650+
<groupId>org.sonatype.plugins</groupId>
651+
<artifactId>nexus-staging-maven-plugin</artifactId>
652+
<extensions>true</extensions>
653+
</plugin>
632654
<plugin>
633655
<groupId>org.codehaus.mojo</groupId>
634656
<artifactId>buildnumber-maven-plugin</artifactId>

0 commit comments

Comments
 (0)