|
76 | 76 | <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> |
77 | 77 | <maven.assembly.plugin.version>3.1.0</maven.assembly.plugin.version> |
78 | 78 | <maven.install.plugin.version>2.5.2</maven.install.plugin.version> |
79 | | - <checksum.maven.plugin.version>1.6</checksum.maven.plugin.version> |
80 | 79 | <maven.jar.plugin.version>3.0.2</maven.jar.plugin.version> |
81 | 80 | <buildnumber.plugin.version>1.4</buildnumber.plugin.version> |
82 | 81 | <maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version> |
83 | 82 | <maven.failsafe.plugin.version>2.22.0</maven.failsafe.plugin.version> |
| 83 | + <maven.packagecloud.wagon.version>0.0.6</maven.packagecloud.wagon.version> |
| 84 | + <checksum.maven.plugin.version>1.8</checksum.maven.plugin.version> |
84 | 85 |
|
85 | 86 | <!-- because of https://issues.apache.org/jira/browse/MRESOURCES-99 --> |
86 | 87 | <build.timestamp>${maven.build.timestamp}</build.timestamp> |
|
382 | 383 | </plugin> |
383 | 384 |
|
384 | 385 | </plugins> |
| 386 | + <extensions> |
| 387 | + <extension> |
| 388 | + <groupId>io.packagecloud.maven.wagon</groupId> |
| 389 | + <artifactId>maven-packagecloud-wagon</artifactId> |
| 390 | + <version>${maven.packagecloud.wagon.version}</version> |
| 391 | + </extension> |
| 392 | + </extensions> |
385 | 393 | </build> |
386 | 394 |
|
387 | 395 | <profiles> |
|
456 | 464 |
|
457 | 465 | <!-- |
458 | 466 | The "milestone" Maven profile is used to push release artifacts to the |
459 | | - Bintray Milestones Maven Repository. |
| 467 | + PackageCloud Milestones Maven Repository. |
460 | 468 | --> |
461 | 469 | <profile> |
462 | 470 | <id>milestone</id> |
|
497 | 505 | </executions> |
498 | 506 | </plugin> |
499 | 507 |
|
| 508 | + <plugin> |
| 509 | + <groupId>net.nicoulaj.maven.plugins</groupId> |
| 510 | + <artifactId>checksum-maven-plugin</artifactId> |
| 511 | + <version>${checksum.maven.plugin.version}</version> |
| 512 | + <executions> |
| 513 | + <execution> |
| 514 | + <id>sign-artifacts</id> |
| 515 | + <phase>package</phase> |
| 516 | + <goals> |
| 517 | + <goal>files</goal> |
| 518 | + </goals> |
| 519 | + <configuration> |
| 520 | + <fileSets> |
| 521 | + <fileSet> |
| 522 | + <directory>${project.build.directory}</directory> |
| 523 | + <includes> |
| 524 | + <include>*.jar</include> |
| 525 | + <include>*.pom</include> |
| 526 | + </includes> |
| 527 | + </fileSet> |
| 528 | + </fileSets> |
| 529 | + <algorithms> |
| 530 | + <algorithm>MD5</algorithm> |
| 531 | + <algorithm>SHA-1</algorithm> |
| 532 | + </algorithms> |
| 533 | + </configuration> |
| 534 | + </execution> |
| 535 | + </executions> |
| 536 | + </plugin> |
| 537 | + |
500 | 538 | </plugins> |
501 | 539 | </build> |
502 | 540 | <distributionManagement> |
503 | 541 | <repository> |
504 | | - <id>bintray-rabbitmq-maven-milestones</id> |
505 | | - <name>rabbitmq-maven-milestones</name> |
506 | | - <url>https://api.bintray.com/maven/rabbitmq/maven-milestones/com.rabbitmq:perf-test/;publish=1</url> |
| 542 | + <id>packagecloud-rabbitmq-maven-milestones</id> |
| 543 | + <url>packagecloud+https://packagecloud.io/rabbitmq/maven-milestones</url> |
507 | 544 | </repository> |
508 | 545 | </distributionManagement> |
509 | 546 | </profile> |
|
0 commit comments