Skip to content

Commit

Permalink
Don't use Jakarta Staging repository
Browse files Browse the repository at this point in the history
since we now have all the dependencies we needed at Maven Central
  • Loading branch information
marko-bekhta committed Dec 12, 2024
1 parent 9ea963f commit 0667a5b
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,8 @@
<mavencentral.repo.url>https://repo.maven.apache.org/maven2/</mavencentral.repo.url>

<!-- Jakarta Staging repository -->
<!-- Can be used for versions of Validation TCK/API -->
<!-- Can be used for versions of Validation TCK/API that are not yet available at Maven Central -->
<!-- This repository is currently not activated -->
<jakarta.staging.repo.id>jakarta-staging</jakarta.staging.repo.id>
<jakarta.staging.repo.url>https://jakarta.oss.sonatype.org/content/repositories/staging/</jakarta.staging.repo.url>

Expand Down Expand Up @@ -1620,14 +1621,6 @@
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>${jakarta.staging.repo.id}</id>
<name>Jakarta OSS Staging Repository</name>
<url>${jakarta.staging.repo.url}</url>
</repository>
</repositories>

<distributionManagement>
<repository>
<id>${ossrh.releases.repo.id}</id>
Expand Down Expand Up @@ -1921,6 +1914,19 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>jakarta-staging</id>
<!-- Use something like: -->
<!-- <activation><jdk>[17,)</jdk></activation> -->
<!-- When needing to use this staging repository by default and hence activate the profile. -->
<repositories>
<repository>
<id>${jakarta.staging.repo.id}</id>
<name>Jakarta OSS Staging Repository</name>
<url>${jakarta.staging.repo.url}</url>
</repository>
</repositories>
</profile>

<profile>
<id>coverage</id>
Expand Down

0 comments on commit 0667a5b

Please sign in to comment.