|
4 | 4 |
|
5 | 5 | <groupId>io.github.clojang</groupId>
|
6 | 6 | <artifactId>sophodromos</artifactId>
|
7 |
| - <version>0.1.3</version> |
| 7 | + <version>0.1.4</version> |
8 | 8 | <packaging>maven-plugin</packaging>
|
9 | 9 |
|
10 | 10 | <name>SophoDromos</name>
|
|
568 | 568 | </plugins>
|
569 | 569 | </reporting>
|
570 | 570 |
|
| 571 | + <distributionManagement> |
| 572 | + <repository> |
| 573 | + <id>central</id> |
| 574 | + <url>https://central.sonatype.com/api/v1/publisher</url> |
| 575 | + </repository> |
| 576 | + </distributionManagement> |
| 577 | + |
571 | 578 | <profiles>
|
572 | 579 | <!-- Release Profile -->
|
573 | 580 | <profile>
|
|
608 | 615 | </build>
|
609 | 616 | </profile>
|
610 | 617 |
|
| 618 | + <!-- Maven Central Profile --> |
| 619 | + <profile> |
| 620 | + <id>maven-central</id> |
| 621 | + <distributionManagement> |
| 622 | + <repository> |
| 623 | + <id>central</id> |
| 624 | + <url>https://central.sonatype.com/api/v1/publisher</url> |
| 625 | + </repository> |
| 626 | + </distributionManagement> |
| 627 | + <build> |
| 628 | + <plugins> |
| 629 | + <plugin> |
| 630 | + <groupId>org.sonatype.central</groupId> |
| 631 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 632 | + <version>0.6.0</version> |
| 633 | + <extensions>true</extensions> |
| 634 | + <configuration> |
| 635 | + <publishingServerId>central</publishingServerId> |
| 636 | + <autoPublish>true</autoPublish> |
| 637 | + <waitUntil>published</waitUntil> |
| 638 | + </configuration> |
| 639 | + </plugin> |
| 640 | + </plugins> |
| 641 | + </build> |
| 642 | + </profile> |
| 643 | + |
| 644 | + <!-- GPG Signing Profile --> |
| 645 | + <profile> |
| 646 | + <id>sign-artifacts</id> |
| 647 | + <build> |
| 648 | + <plugins> |
| 649 | + <plugin> |
| 650 | + <groupId>org.apache.maven.plugins</groupId> |
| 651 | + <artifactId>maven-gpg-plugin</artifactId> |
| 652 | + <version>3.2.8</version> |
| 653 | + <executions> |
| 654 | + <execution> |
| 655 | + <id>sign-artifacts</id> |
| 656 | + <phase>verify</phase> |
| 657 | + <goals> |
| 658 | + <goal>sign</goal> |
| 659 | + </goals> |
| 660 | + <configuration> |
| 661 | + <gpgArguments> |
| 662 | + <arg>--pinentry-mode</arg> |
| 663 | + <arg>loopback</arg> |
| 664 | + <arg>--batch</arg> |
| 665 | + </gpgArguments> |
| 666 | + </configuration> |
| 667 | + </execution> |
| 668 | + </executions> |
| 669 | + </plugin> |
| 670 | + </plugins> |
| 671 | + </build> |
| 672 | + </profile> |
| 673 | + |
611 | 674 | <!-- Skip Quality Checks Profile -->
|
612 | 675 | <profile>
|
613 | 676 | <id>skip-quality</id>
|
|
0 commit comments