Skip to content

Commit 608b2fa

Browse files
author
hendrixjoseph
committed
update plugin versions
1 parent 2a1e25b commit 608b2fa

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

pom.xml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,72 @@
5959
</dependency>
6060
</dependencies>
6161

62+
<distributionManagement>
63+
<snapshotRepository>
64+
<id>ossrh</id>
65+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
66+
</snapshotRepository>
67+
<repository>
68+
<id>ossrh</id>
69+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
70+
</repository>
71+
</distributionManagement>
72+
73+
74+
<build>
75+
<plugins>
76+
<plugin>
77+
<groupId>org.sonatype.plugins</groupId>
78+
<artifactId>nexus-staging-maven-plugin</artifactId>
79+
<version>1.6.13</version>
80+
<extensions>true</extensions>
81+
<configuration>
82+
<serverId>ossrh</serverId>
83+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
84+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
85+
</configuration>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-source-plugin</artifactId>
90+
<version>3.3.0</version>
91+
<executions>
92+
<execution>
93+
<id>attach-sources</id>
94+
<goals>
95+
<goal>jar-no-fork</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-javadoc-plugin</artifactId>
103+
<version>3.6.3</version>
104+
<executions>
105+
<execution>
106+
<id>attach-javadocs</id>
107+
<goals>
108+
<goal>jar</goal>
109+
</goals>
110+
</execution>
111+
</executions>
112+
</plugin>
113+
<plugin>
114+
<groupId>org.apache.maven.plugins</groupId>
115+
<artifactId>maven-gpg-plugin</artifactId>
116+
<version>3.1.0</version>
117+
<executions>
118+
<execution>
119+
<id>sign-artifacts</id>
120+
<phase>verify</phase>
121+
<goals>
122+
<goal>sign</goal>
123+
</goals>
124+
</execution>
125+
</executions>
126+
</plugin>
127+
</plugins>
128+
</build>
129+
62130
</project>

0 commit comments

Comments
 (0)