Skip to content

Commit

Permalink
[MPOM-452] Use properties for snapshot and release repository IDs as …
Browse files Browse the repository at this point in the history
…well
  • Loading branch information
lprimak authored and slachiewicz committed Jan 9, 2024
1 parent 7888bdb commit d86262c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,20 +68,22 @@ under the License.

<distributionManagement>
<repository>
<id>apache.releases.https</id>
<id>${distMgmtReleasesId}</id>
<name>${distMgmtReleasesName}</name>
<url>${distMgmtReleasesUrl}</url>
</repository>
<snapshotRepository>
<id>apache.snapshots.https</id>
<id>${distMgmtSnapshotsId}</id>
<name>${distMgmtSnapshotsName}</name>
<url>${distMgmtSnapshotsUrl}</url>
</snapshotRepository>
</distributionManagement>

<properties>
<distMgmtReleasesId>apache.releases.https</distMgmtReleasesId>
<distMgmtReleasesName>Apache Release Distribution Repository</distMgmtReleasesName>
<distMgmtReleasesUrl>https://repository.apache.org/service/local/staging/deploy/maven2</distMgmtReleasesUrl>
<distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId>
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
<organization.logo>https://www.apache.org/images/asf_logo_wide_2016.png</organization.logo>
Expand Down

0 comments on commit d86262c

Please sign in to comment.