|
193 | 193 | <plugin>
|
194 | 194 | <groupId>org.sonatype.central</groupId>
|
195 | 195 | <artifactId>central-publishing-maven-plugin</artifactId>
|
196 |
| - <version>0.8.0</version> |
197 |
| - <extensions>true</extensions> |
198 |
| - <configuration> |
199 |
| - <publishingServerId>central</publishingServerId> |
200 |
| - <tokenAuth>true</tokenAuth> |
201 |
| - <autoPublish>true</autoPublish> |
202 |
| - <waitUntil>published</waitUntil> |
203 |
| - </configuration> |
204 | 196 | </plugin>
|
205 | 197 | <plugin>
|
206 | 198 | <groupId>org.apache.maven.plugins</groupId>
|
207 | 199 | <artifactId>maven-gpg-plugin</artifactId>
|
208 |
| - <version>3.1.0</version> |
209 |
| - <executions> |
210 |
| - <execution> |
211 |
| - <id>sign-artifacts</id> |
212 |
| - <phase>verify</phase> |
213 |
| - <goals> |
214 |
| - <goal>sign</goal> |
215 |
| - </goals> |
216 |
| - <configuration> |
217 |
| - <!-- This is required to make sure the plugin does not stop asking for --> |
218 |
| - <!-- user input on the passphrase --> |
219 |
| - <gpgArguments> |
220 |
| - <arg>--pinentry-mode</arg> |
221 |
| - <arg>loopback</arg> |
222 |
| - </gpgArguments> |
223 |
| - </configuration> |
224 |
| - </execution> |
225 |
| - </executions> |
| 200 | + </plugin> |
| 201 | + <plugin> |
| 202 | + <artifactId>maven-release-plugin</artifactId> |
| 203 | + <version>3.0.1</version> |
| 204 | + </plugin> |
| 205 | + </plugins> |
| 206 | + </build> |
| 207 | + </profile> |
| 208 | + <profile> |
| 209 | + <id>snapshot</id> |
| 210 | + <build> |
| 211 | + <plugins> |
| 212 | + <plugin> |
| 213 | + <groupId>org.sonatype.central</groupId> |
| 214 | + <artifactId>central-publishing-maven-plugin</artifactId> |
226 | 215 | </plugin>
|
227 | 216 | </plugins>
|
228 | 217 | </build>
|
|
232 | 221 | <build>
|
233 | 222 | <pluginManagement>
|
234 | 223 | <plugins>
|
| 224 | + <plugin> |
| 225 | + <groupId>org.sonatype.central</groupId> |
| 226 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 227 | + <version>0.8.0</version> |
| 228 | + <extensions>true</extensions> |
| 229 | + <configuration> |
| 230 | + <publishingServerId>central</publishingServerId> |
| 231 | + <autoPublish>true</autoPublish> |
| 232 | + <waitUntil>published</waitUntil> |
| 233 | + </configuration> |
| 234 | + </plugin> |
| 235 | + |
| 236 | + <plugin> |
| 237 | + <groupId>org.apache.maven.plugins</groupId> |
| 238 | + <artifactId>maven-gpg-plugin</artifactId> |
| 239 | + <version>3.1.0</version> |
| 240 | + <executions> |
| 241 | + <execution> |
| 242 | + <id>sign-artifacts</id> |
| 243 | + <phase>verify</phase> |
| 244 | + <goals> |
| 245 | + <goal>sign</goal> |
| 246 | + </goals> |
| 247 | + <configuration> |
| 248 | + <!-- This is required to make sure the plugin does not stop asking for --> |
| 249 | + <!-- user input on the passphrase --> |
| 250 | + <gpgArguments> |
| 251 | + <arg>--pinentry-mode</arg> |
| 252 | + <arg>loopback</arg> |
| 253 | + </gpgArguments> |
| 254 | + </configuration> |
| 255 | + </execution> |
| 256 | + </executions> |
| 257 | + </plugin> |
| 258 | + |
| 259 | + <plugin> |
| 260 | + <artifactId>maven-release-plugin</artifactId> |
| 261 | + <version>3.0.1</version> |
| 262 | + <configuration> |
| 263 | + <checkModificationExcludes> |
| 264 | + <checkModificationExclude>mvnw</checkModificationExclude> <!-- skip wrapper --> |
| 265 | + </checkModificationExcludes> |
| 266 | + </configuration> |
| 267 | + |
| 268 | + </plugin> |
235 | 269 | <plugin>
|
236 | 270 | <artifactId>maven-compiler-plugin</artifactId>
|
237 | 271 | <version>3.12.1</version>
|
|
286 | 320 | </executions>
|
287 | 321 | </plugin>
|
288 | 322 |
|
289 |
| - <plugin> |
290 |
| - <artifactId>maven-release-plugin</artifactId> |
291 |
| - <version>3.0.1</version> |
292 |
| - <configuration> |
293 |
| - <checkModificationExcludes> |
294 |
| - <checkModificationExclude>mvnw</checkModificationExclude> <!-- skip wrapper --> |
295 |
| - </checkModificationExcludes> |
296 |
| - </configuration> |
297 |
| - </plugin> |
298 |
| - |
299 | 323 | <plugin>
|
300 | 324 | <groupId>org.jacoco</groupId>
|
301 | 325 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
0 commit comments