Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't use Jakarta Staging repository #1518

Merged
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
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 @@ -1927,6 +1920,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
Loading