Skip to content

Commit 8d11b93

Browse files
committed
update pom
1 parent e8a0b07 commit 8d11b93

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

pom.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,48 @@
3434
<artifactId>sonar-maven-plugin</artifactId>
3535
<version>${sonar-maven-plugin.version}</version>
3636
</plugin>
37+
<plugin>
38+
<groupId>org.jreleaser</groupId>
39+
<artifactId>jreleaser-maven-plugin</artifactId>
40+
<version>${jreleaser-maven-plugin.version}</version>
41+
<configuration>
42+
<jreleaser>
43+
<signing>
44+
<active>ALWAYS</active>
45+
<armored>true</armored>
46+
</signing>
47+
<deploy>
48+
<maven>
49+
<mavenCentral>
50+
<sonatype>
51+
<active>RELEASE</active>
52+
<url>https://central.sonatype.com/api/v1/publisher</url>
53+
<stagingRepositories>target/staging-deploy</stagingRepositories>
54+
</sonatype>
55+
</mavenCentral>
56+
<nexus2>
57+
<maven-central>
58+
<active>SNAPSHOT</active>
59+
<url>https://ossrh-staging-api.central.sonatype.com/service/local</url>
60+
<snapshotUrl>https://central.sonatype.com/repository/maven-snapshots</snapshotUrl>
61+
<applyMavenCentralRules>true</applyMavenCentralRules>
62+
<snapshotSupported>true</snapshotSupported>
63+
<closeRepository>true</closeRepository>
64+
<releaseRepository>true</releaseRepository>
65+
<stagingRepositories>target/staging-deploy</stagingRepositories>
66+
</maven-central>
67+
</nexus2>
68+
</maven>
69+
</deploy>
70+
<release>
71+
<github>
72+
<skipTag>false</skipTag>
73+
<skipRelease>true</skipRelease>
74+
</github>
75+
</release>
76+
</jreleaser>
77+
</configuration>
78+
</plugin>
3779
</plugins>
3880
</build>
3981
</profile>

0 commit comments

Comments
 (0)