|
3 | 3 |
|
4 | 4 | <groupId>com.intuit.rwebpulse</groupId>
|
5 | 5 | <artifactId>rwebpulse</artifactId>
|
6 |
| - <version>1.0.3</version> |
| 6 | + <version>1.0.4</version> |
7 | 7 | <packaging>jar</packaging>
|
8 | 8 | <name>Spring Web Client</name>
|
9 | 9 | <url>https://github.com/intuit/rwebpulse</url>
|
|
103 | 103 |
|
104 | 104 | <build>
|
105 | 105 | <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> |
106 | 117 | <plugin>
|
107 | 118 | <groupId>org.jacoco</groupId>
|
108 | 119 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
123 | 134 | </execution>
|
124 | 135 | </executions>
|
125 | 136 | </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> |
126 | 188 | </plugins>
|
127 | 189 | <pluginManagement>
|
128 | 190 | <plugins>
|
|
162 | 224 | <version>1.6.7</version>
|
163 | 225 | <extensions>true</extensions>
|
164 | 226 | <configuration>
|
165 |
| - <serverId>ossrh</serverId> |
| 227 | + <serverId>central</serverId> |
166 | 228 | <nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
167 | 229 | <autoReleaseAfterClose>true</autoReleaseAfterClose>
|
168 | 230 | </configuration>
|
|
227 | 289 | </profiles>
|
228 | 290 | <distributionManagement>
|
229 | 291 | <snapshotRepository>
|
230 |
| - <id>ossrh</id> |
| 292 | + <id>central</id> |
231 | 293 | <url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
232 | 294 | </snapshotRepository>
|
233 | 295 | <repository>
|
234 |
| - <id>ossrh</id> |
| 296 | + <id>central</id> |
235 | 297 | <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
236 | 298 | </repository>
|
237 | 299 | </distributionManagement>
|
|
0 commit comments