Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<!-- This profile is for the continuous integration pipeline for deploying to the central repository, which requires artifacts to be signed -->
<profiles>
<profile>
<id>CI</id>
<id>MavenCentral</id>
<build>
<plugins>
<plugin>
Expand All @@ -203,6 +203,18 @@
</plugin>
</plugins>
</build>

<!-- Central Repository deployment configuration -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</profile>
</profiles>

Expand Down Expand Up @@ -235,18 +247,6 @@
</dependencies>
</dependencyManagement>

<!-- Central Repository deployment configuration -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
Expand Down