|
62 | 62 | <maven.sources.plugin.version>3.0.1</maven.sources.plugin.version> |
63 | 63 | <maven.javadoc.plugin.version>3.0.0-M1</maven.javadoc.plugin.version> |
64 | 64 | <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> |
| 65 | + <maven.packagecloud.wagon.version>0.0.6</maven.packagecloud.wagon.version> |
| 66 | + <checksum.maven.plugin.version>1.8</checksum.maven.plugin.version> |
65 | 67 |
|
66 | 68 | <java.compile.version>1.6</java.compile.version> |
67 | 69 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
359 | 361 | </executions> |
360 | 362 | </plugin> |
361 | 363 | </plugins> |
| 364 | + <extensions> |
| 365 | + <extension> |
| 366 | + <groupId>io.packagecloud.maven.wagon</groupId> |
| 367 | + <artifactId>maven-packagecloud-wagon</artifactId> |
| 368 | + <version>${maven.packagecloud.wagon.version}</version> |
| 369 | + </extension> |
| 370 | + </extensions> |
362 | 371 | </build> |
363 | 372 |
|
364 | 373 | <profiles> |
|
482 | 491 |
|
483 | 492 | <!-- |
484 | 493 | The "milestone" Maven profile is used to push release artifacts to the |
485 | | - Bintray Milestones Maven Repository. |
| 494 | + PackageCloud Milestones Maven Repository. |
486 | 495 | --> |
487 | 496 | <profile> |
488 | 497 | <id>milestone</id> |
|
522 | 531 | </execution> |
523 | 532 | </executions> |
524 | 533 | </plugin> |
| 534 | + |
| 535 | + <plugin> |
| 536 | + <groupId>net.nicoulaj.maven.plugins</groupId> |
| 537 | + <artifactId>checksum-maven-plugin</artifactId> |
| 538 | + <version>${checksum.maven.plugin.version}</version> |
| 539 | + <executions> |
| 540 | + <execution> |
| 541 | + <id>sign-artifacts</id> |
| 542 | + <phase>package</phase> |
| 543 | + <goals> |
| 544 | + <goal>files</goal> |
| 545 | + </goals> |
| 546 | + <configuration> |
| 547 | + <fileSets> |
| 548 | + <fileSet> |
| 549 | + <directory>${project.build.directory}</directory> |
| 550 | + <includes> |
| 551 | + <include>*.jar</include> |
| 552 | + <include>*.pom</include> |
| 553 | + </includes> |
| 554 | + </fileSet> |
| 555 | + </fileSets> |
| 556 | + <algorithms> |
| 557 | + <algorithm>MD5</algorithm> |
| 558 | + <algorithm>SHA-256</algorithm> |
| 559 | + </algorithms> |
| 560 | + </configuration> |
| 561 | + </execution> |
| 562 | + </executions> |
| 563 | + </plugin> |
| 564 | + |
525 | 565 | </plugins> |
526 | 566 | </build> |
527 | 567 | <distributionManagement> |
528 | 568 | <repository> |
529 | | - <id>bintray-rabbitmq-maven-milestones</id> |
530 | | - <name>rabbitmq-maven-milestones</name> |
531 | | - <url>https://api.bintray.com/maven/rabbitmq/maven-milestones/com.rabbitmq.jms:rabbitmq-jms/;publish=1</url> |
| 569 | + <id>packagecloud-rabbitmq-maven-milestones</id> |
| 570 | + <url>packagecloud+https://packagecloud.io/rabbitmq/maven-milestones</url> |
532 | 571 | </repository> |
533 | 572 | </distributionManagement> |
534 | 573 | </profile> |
|
0 commit comments