Skip to content

Commit 559015d

Browse files
Update pom.xml
1 parent 029108b commit 559015d

File tree

1 file changed

+66
-4
lines changed

1 file changed

+66
-4
lines changed

pom.xml

Lines changed: 66 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.intuit.rwebpulse</groupId>
55
<artifactId>rwebpulse</artifactId>
6-
<version>1.0.3</version>
6+
<version>1.0.4</version>
77
<packaging>jar</packaging>
88
<name>Spring Web Client</name>
99
<url>https://github.com/intuit/rwebpulse</url>
@@ -103,6 +103,17 @@
103103

104104
<build>
105105
<plugins>
106+
<plugin>
107+
<groupId>org.sonatype.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110+
<extensions>true</extensions>
111+
<configuration>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115+
</configuration>
116+
</plugin>
106117
<plugin>
107118
<groupId>org.jacoco</groupId>
108119
<artifactId>jacoco-maven-plugin</artifactId>
@@ -123,6 +134,57 @@
123134
</execution>
124135
</executions>
125136
</plugin>
137+
<plugin>
138+
<groupId>org.apache.maven.plugins</groupId>
139+
<artifactId>maven-source-plugin</artifactId>
140+
<version>3.2.1</version>
141+
<executions>
142+
<execution>
143+
<id>attach-sources</id>
144+
<phase>package</phase>
145+
<goals>
146+
<goal>jar-no-fork</goal>
147+
</goals>
148+
</execution>
149+
</executions>
150+
</plugin>
151+
<plugin>
152+
<groupId>org.apache.maven.plugins</groupId>
153+
<artifactId>maven-javadoc-plugin</artifactId>
154+
<version>3.2.0</version>
155+
<executions>
156+
<execution>
157+
<id>attach-javadocs</id>
158+
<phase>package</phase>
159+
<goals>
160+
<goal>jar</goal>
161+
</goals>
162+
</execution>
163+
</executions>
164+
</plugin>
165+
<plugin>
166+
<groupId>org.apache.maven.plugins</groupId>
167+
<artifactId>maven-gpg-plugin</artifactId>
168+
<version>1.6</version>
169+
<executions>
170+
<execution>
171+
<id>sign-artifacts</id>
172+
<phase>verify</phase>
173+
<goals>
174+
<goal>sign</goal>
175+
</goals>
176+
</execution>
177+
</executions>
178+
<configuration>
179+
<gpgArguments>
180+
<arg>--pinentry-mode</arg>
181+
<arg>loopback</arg>
182+
<arg>--batch</arg>
183+
<arg>--yes</arg>
184+
</gpgArguments>
185+
<useAgent>false</useAgent>
186+
</configuration>
187+
</plugin>
126188
</plugins>
127189
<pluginManagement>
128190
<plugins>
@@ -162,7 +224,7 @@
162224
<version>1.6.7</version>
163225
<extensions>true</extensions>
164226
<configuration>
165-
<serverId>ossrh</serverId>
227+
<serverId>central</serverId>
166228
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
167229
<autoReleaseAfterClose>true</autoReleaseAfterClose>
168230
</configuration>
@@ -227,11 +289,11 @@
227289
</profiles>
228290
<distributionManagement>
229291
<snapshotRepository>
230-
<id>ossrh</id>
292+
<id>central</id>
231293
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
232294
</snapshotRepository>
233295
<repository>
234-
<id>ossrh</id>
296+
<id>central</id>
235297
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
236298
</repository>
237299
</distributionManagement>

0 commit comments

Comments
 (0)