|
76 | 76 | <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
|
77 | 77 | <license-maven-plugin.version>5.0.0</license-maven-plugin.version>
|
78 | 78 | <version.enforcer.plugin>3.5.0</version.enforcer.plugin>
|
79 |
| - <version.gpg.plugin>3.2.7</version.gpg.plugin> |
80 |
| - <version.nexus-staging.plugin>1.7.0</version.nexus-staging.plugin> |
81 |
| - |
82 |
| - <gpg.sign.skip>true</gpg.sign.skip> |
83 |
| - <deploy.skip>true</deploy.skip> |
84 |
| - |
85 |
| - <!-- Repository Deployment URLs --> |
86 |
| - <ossrh.releases.repo.id>ossrh</ossrh.releases.repo.id> |
87 |
| - <ossrh.releases.repo.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</ossrh.releases.repo.url> |
88 |
| - <ossrh.releases.repo.baseUrl>https://oss.sonatype.org/</ossrh.releases.repo.baseUrl> |
89 |
| - <ossrh.snapshots.repo.id>ossrh</ossrh.snapshots.repo.id> |
90 |
| - <ossrh.snapshots.repo.url>https://oss.sonatype.org/content/repositories/snapshots</ossrh.snapshots.repo.url> |
| 79 | + <version.maven-deploy-plugin>3.1.4</version.maven-deploy-plugin> |
91 | 80 | </properties>
|
92 | 81 |
|
93 | 82 | <dependencies>
|
|
204 | 193 | </plugin>
|
205 | 194 | <plugin>
|
206 | 195 | <groupId>org.apache.maven.plugins</groupId>
|
207 |
| - <artifactId>maven-gpg-plugin</artifactId> |
208 |
| - <version>${version.gpg.plugin}</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 |
| - <skip>${gpg.sign.skip}</skip> |
218 |
| - <homedir>${env.RELEASE_GPG_HOMEDIR}</homedir> |
219 |
| - <bestPractices>true</bestPractices> |
220 |
| - </configuration> |
221 |
| - </execution> |
222 |
| - </executions> |
223 |
| - </plugin> |
224 |
| - <plugin> |
225 |
| - <groupId>org.sonatype.plugins</groupId> |
226 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
227 |
| - <version>${version.nexus-staging.plugin}</version> |
228 |
| - <extensions>true</extensions> |
229 |
| - <configuration> |
230 |
| - <skipNexusStagingDeployMojo>${deploy.skip}</skipNexusStagingDeployMojo> |
231 |
| - <serverId>${ossrh.releases.repo.id}</serverId> |
232 |
| - <!-- The following, by default, is only used for actual releases, not for snapshot deployments --> |
233 |
| - <nexusUrl>${ossrh.releases.repo.baseUrl}</nexusUrl> |
234 |
| - <!-- oss.sonatype.org has been very slow when closing repositories lately; |
235 |
| - let's raise the timeout until we switch to s01.sonatype.org --> |
236 |
| - <stagingProgressTimeoutMinutes>60</stagingProgressTimeoutMinutes> |
237 |
| - </configuration> |
| 196 | + <artifactId>maven-deploy-plugin</artifactId> |
| 197 | + <version>${version.maven-deploy-plugin}</version> |
238 | 198 | </plugin>
|
239 | 199 | </plugins>
|
240 | 200 | </build>
|
|
249 | 209 | </property>
|
250 | 210 | </activation>
|
251 | 211 | <properties>
|
252 |
| - <gpg.sign.skip>false</gpg.sign.skip> |
253 |
| - <deploy.skip>false</deploy.skip> |
| 212 | + <altDeploymentRepository>local::file:${maven.multiModuleProjectDirectory}/target/staging-deploy/maven</altDeploymentRepository> |
254 | 213 | </properties>
|
255 | 214 | </profile>
|
256 | 215 | </profiles>
|
|
275 | 234 | <system>Jenkins</system>
|
276 | 235 | <url>http://ci.hibernate.org/</url>
|
277 | 236 | </ciManagement>
|
278 |
| - |
279 |
| - <distributionManagement> |
280 |
| - <repository> |
281 |
| - <id>${ossrh.releases.repo.id}</id> |
282 |
| - <name>OSSRH Releases Repository</name> |
283 |
| - <url>${ossrh.releases.repo.url}</url> |
284 |
| - </repository> |
285 |
| - <snapshotRepository> |
286 |
| - <id>${ossrh.snapshots.repo.id}</id> |
287 |
| - <name>OSSRH Snapshots Repository</name> |
288 |
| - <url>${ossrh.snapshots.repo.url}</url> |
289 |
| - </snapshotRepository> |
290 |
| - </distributionManagement> |
291 |
| - |
292 | 237 | </project>
|
0 commit comments