|
81 | 81 | <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
|
82 | 82 | <maven.jar.plugin.version>3.0.2</maven.jar.plugin.version>
|
83 | 83 | <maven.bundle.plugin.version>2.3.7</maven.bundle.plugin.version>
|
| 84 | + <maven.packagecloud.wagon.version>0.0.6</maven.packagecloud.wagon.version> |
| 85 | + <checksum.maven.plugin.version>1.8</checksum.maven.plugin.version> |
84 | 86 |
|
85 | 87 | <!--
|
86 | 88 | These groovy scripts are used later in this POM file to generate
|
|
572 | 574 |
|
573 | 575 | <!--
|
574 | 576 | The "milestone" Maven profile is used to push release artifacts to the
|
575 |
| - Bintray Milestones Maven Repository. |
| 577 | + PackageCloud Milestones Maven Repository. |
576 | 578 | -->
|
577 | 579 | <profile>
|
578 | 580 | <id>milestone</id>
|
|
595 | 597 | </executions>
|
596 | 598 | </plugin>
|
597 | 599 |
|
| 600 | + <plugin> |
| 601 | + <groupId>net.nicoulaj.maven.plugins</groupId> |
| 602 | + <artifactId>checksum-maven-plugin</artifactId> |
| 603 | + <version>${checksum.maven.plugin.version}</version> |
| 604 | + <executions> |
| 605 | + <execution> |
| 606 | + <id>sign-artifacts</id> |
| 607 | + <phase>package</phase> |
| 608 | + <goals> |
| 609 | + <goal>files</goal> |
| 610 | + </goals> |
| 611 | + <configuration> |
| 612 | + <fileSets> |
| 613 | + <fileSet> |
| 614 | + <directory>${project.build.directory}</directory> |
| 615 | + <includes> |
| 616 | + <include>*.jar</include> |
| 617 | + <include>*.pom</include> |
| 618 | + </includes> |
| 619 | + </fileSet> |
| 620 | + </fileSets> |
| 621 | + <algorithms> |
| 622 | + <algorithm>MD5</algorithm> |
| 623 | + <algorithm>SHA-1</algorithm> |
| 624 | + </algorithms> |
| 625 | + </configuration> |
| 626 | + </execution> |
| 627 | + </executions> |
| 628 | + </plugin> |
| 629 | + |
598 | 630 | <plugin>
|
599 | 631 | <groupId>org.apache.maven.plugins</groupId>
|
600 | 632 | <artifactId>maven-gpg-plugin</artifactId>
|
|
616 | 648 | </build>
|
617 | 649 | <distributionManagement>
|
618 | 650 | <repository>
|
619 |
| - <id>bintray-rabbitmq-maven-milestones</id> |
620 |
| - <name>rabbitmq-maven-milestones</name> |
621 |
| - <url>https://api.bintray.com/maven/rabbitmq/maven-milestones/com.rabbitmq:amqp-client/;publish=1</url> |
| 651 | + <id>packagecloud-rabbitmq-maven-milestones</id> |
| 652 | + <url>packagecloud+https://packagecloud.io/rabbitmq/maven-milestones</url> |
622 | 653 | </repository>
|
623 | 654 | </distributionManagement>
|
624 | 655 | </profile>
|
|
956 | 987 | </plugin>
|
957 | 988 |
|
958 | 989 | </plugins>
|
| 990 | + <extensions> |
| 991 | + <extension> |
| 992 | + <groupId>io.packagecloud.maven.wagon</groupId> |
| 993 | + <artifactId>maven-packagecloud-wagon</artifactId> |
| 994 | + <version>${maven.packagecloud.wagon.version}</version> |
| 995 | + </extension> |
| 996 | + </extensions> |
959 | 997 | </build>
|
960 | 998 |
|
961 | 999 | </project>
|
0 commit comments