|
79 | 79 | <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version>
|
80 | 80 | <maven.jar.plugin.version>3.0.2</maven.jar.plugin.version>
|
81 | 81 | <maven.bundle.plugin.version>3.2.0</maven.bundle.plugin.version>
|
| 82 | + <maven.packagecloud.wagon.version>0.0.6</maven.packagecloud.wagon.version> |
| 83 | + <checksum.maven.plugin.version>1.8</checksum.maven.plugin.version> |
82 | 84 |
|
83 | 85 | <!--
|
84 | 86 | These groovy scripts are used later in this POM file to generate
|
|
570 | 572 |
|
571 | 573 | <!--
|
572 | 574 | The "milestone" Maven profile is used to push release artifacts to the
|
573 |
| - Bintray Milestones Maven Repository. |
| 575 | + PackageCloud Milestones Maven Repository. |
574 | 576 | -->
|
575 | 577 | <profile>
|
576 | 578 | <id>milestone</id>
|
|
593 | 595 | </executions>
|
594 | 596 | </plugin>
|
595 | 597 |
|
| 598 | + <plugin> |
| 599 | + <groupId>net.nicoulaj.maven.plugins</groupId> |
| 600 | + <artifactId>checksum-maven-plugin</artifactId> |
| 601 | + <version>${checksum.maven.plugin.version}</version> |
| 602 | + <executions> |
| 603 | + <execution> |
| 604 | + <id>sign-artifacts</id> |
| 605 | + <phase>package</phase> |
| 606 | + <goals> |
| 607 | + <goal>files</goal> |
| 608 | + </goals> |
| 609 | + <configuration> |
| 610 | + <fileSets> |
| 611 | + <fileSet> |
| 612 | + <directory>${project.build.directory}</directory> |
| 613 | + <includes> |
| 614 | + <include>*.jar</include> |
| 615 | + <include>*.pom</include> |
| 616 | + </includes> |
| 617 | + </fileSet> |
| 618 | + </fileSets> |
| 619 | + <algorithms> |
| 620 | + <algorithm>MD5</algorithm> |
| 621 | + <algorithm>SHA-1</algorithm> |
| 622 | + </algorithms> |
| 623 | + </configuration> |
| 624 | + </execution> |
| 625 | + </executions> |
| 626 | + </plugin> |
| 627 | + |
596 | 628 | <plugin>
|
597 | 629 | <groupId>org.apache.maven.plugins</groupId>
|
598 | 630 | <artifactId>maven-gpg-plugin</artifactId>
|
|
614 | 646 | </build>
|
615 | 647 | <distributionManagement>
|
616 | 648 | <repository>
|
617 |
| - <id>bintray-rabbitmq-maven-milestones</id> |
618 |
| - <name>rabbitmq-maven-milestones</name> |
619 |
| - <url>https://api.bintray.com/maven/rabbitmq/maven-milestones/com.rabbitmq:amqp-client/;publish=1</url> |
| 649 | + <id>packagecloud-rabbitmq-maven-milestones</id> |
| 650 | + <url>packagecloud+https://packagecloud.io/rabbitmq/maven-milestones</url> |
620 | 651 | </repository>
|
621 | 652 | </distributionManagement>
|
622 | 653 | </profile>
|
|
942 | 973 | </plugin>
|
943 | 974 |
|
944 | 975 | </plugins>
|
| 976 | + <extensions> |
| 977 | + <extension> |
| 978 | + <groupId>io.packagecloud.maven.wagon</groupId> |
| 979 | + <artifactId>maven-packagecloud-wagon</artifactId> |
| 980 | + <version>${maven.packagecloud.wagon.version}</version> |
| 981 | + </extension> |
| 982 | + </extensions> |
945 | 983 | </build>
|
946 | 984 |
|
947 | 985 | </project>
|
0 commit comments