|
32 | 32 | <url>https://central.sonatype.com/api/v1/publisher/upload</url>
|
33 | 33 | </repository>
|
34 | 34 | </distributionManagement>
|
| 35 | + <scm> |
| 36 | + <connection>scm:git:git://github.com/SAP/cloud-sdk-java.git</connection> |
| 37 | + <developerConnection>scm:git:ssh://github.com:SAP/cloud-sdk-java.git</developerConnection> |
| 38 | + <url>https://github.com/SAP/cloud-sdk-java/tree/main</url> |
| 39 | + </scm> |
35 | 40 | <properties>
|
36 | 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
37 | 42 | <!-- do not modify the following line, it is updated by the versioning script -->
|
|
346 | 351 | <sourcepath>${project.basedir}/target/delombok</sourcepath>
|
347 | 352 | </configuration>
|
348 | 353 | </plugin>
|
| 354 | + <plugin> |
| 355 | + <groupId>org.apache.maven.plugins</groupId> |
| 356 | + <artifactId>maven-gpg-plugin</artifactId> |
| 357 | + <version>3.2.7</version> |
| 358 | + <executions> |
| 359 | + <execution> |
| 360 | + <id>sign-artifacts</id> |
| 361 | + <phase>verify</phase> |
| 362 | + <goals> |
| 363 | + <goal>sign</goal> |
| 364 | + </goals> |
| 365 | + </execution> |
| 366 | + </executions> |
| 367 | + </plugin> |
349 | 368 | <plugin>
|
350 | 369 | <groupId>org.apache.maven.plugins</groupId>
|
351 | 370 | <artifactId>maven-install-plugin</artifactId>
|
|
429 | 448 | <groupId>org.apache.maven.plugins</groupId>
|
430 | 449 | <artifactId>maven-javadoc-plugin</artifactId>
|
431 | 450 | </plugin>
|
| 451 | + <plugin> |
| 452 | + <groupId>org.apache.maven.plugins</groupId> |
| 453 | + <artifactId>maven-gpg-plugin</artifactId> |
| 454 | + </plugin> |
| 455 | + <!-- The plugins configuration below will not be inherited by children projects, they are specific to the parent pom --> |
432 | 456 | <plugin>
|
433 | 457 | <groupId>org.apache.maven.plugins</groupId>
|
434 | 458 | <artifactId>maven-install-plugin</artifactId>
|
435 | 459 | <executions>
|
436 | 460 | <execution>
|
437 |
| - <phase>install</phase> |
438 |
| - <goals> |
439 |
| - <goal>install-file</goal> |
440 |
| - </goals> |
441 | 461 | <configuration>
|
442 | 462 | <file>${project.basedir}/pom.xml</file>
|
443 |
| - <groupId>com.sap.cloud.sdk</groupId> |
444 |
| - <artifactId>sdk-bom</artifactId> |
445 |
| - <version>${sdk.version}</version> |
446 |
| - <packaging>pom</packaging> |
447 | 463 | <!-- The parent has no sources -->
|
448 | 464 | <sources>${empty.property}</sources>
|
449 | 465 | <javadoc>${empty.property}</javadoc>
|
450 | 466 | </configuration>
|
451 | 467 | </execution>
|
452 | 468 | </executions>
|
| 469 | + <inherited>false</inherited> |
453 | 470 | </plugin>
|
454 | 471 | <plugin>
|
455 |
| - <groupId>org.apache.maven.plugins</groupId> |
456 |
| - <artifactId>maven-gpg-plugin</artifactId> |
457 |
| - <version>3.2.7</version> |
458 |
| - <executions> |
459 |
| - <execution> |
460 |
| - <id>sign-artifacts</id> |
461 |
| - <phase>verify</phase> |
462 |
| - <goals> |
463 |
| - <goal>sign</goal> |
464 |
| - </goals> |
465 |
| - </execution> |
466 |
| - </executions> |
| 472 | + <groupId>org.sonatype.central</groupId> |
| 473 | + <artifactId>central-publishing-maven-plugin</artifactId> |
467 | 474 | </plugin>
|
468 | 475 | </plugins>
|
469 | 476 | </build>
|
|
0 commit comments