Skip to content

Commit d287695

Browse files
committed
improve pom
1 parent 0ebe440 commit d287695

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

pom.xml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.tngtech.java</groupId>
66
<artifactId>config-builder</artifactId>
7-
<version>1.4.3-SNAPSHOT</version>
7+
<version>1.4.3</version>
88
<packaging>jar</packaging>
99
<name>Config-Builder</name>
1010
<description>The Config Builder creates fully configured instances of config classes, using values from various sources like properties files, command line arguments etc.</description>
@@ -44,14 +44,24 @@
4444
<url>https://www.tngtech.com/</url>
4545
</organization>
4646

47-
<parent>
48-
<groupId>org.sonatype.oss</groupId>
49-
<artifactId>oss-parent</artifactId>
50-
<version>9</version>
51-
</parent>
52-
5347
<build>
5448
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-release-plugin</artifactId>
52+
<version>2.5.3</version>
53+
</plugin>
54+
<plugin>
55+
<groupId>org.sonatype.plugins</groupId>
56+
<artifactId>nexus-staging-maven-plugin</artifactId>
57+
<version>1.6.8</version>
58+
<extensions>true</extensions>
59+
<configuration>
60+
<serverId>sonatype-nexus-staging</serverId>
61+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
62+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
63+
</configuration>
64+
</plugin>
5565
<plugin>
5666
<groupId>org.apache.maven.plugins</groupId>
5767
<artifactId>maven-compiler-plugin</artifactId>

0 commit comments

Comments
 (0)