mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
feat: add distributionManagement in pom.xml
This commit is contained in:
parent
b35b7936e1
commit
c3a800775b
1 changed files with 14 additions and 0 deletions
14
pom.xml
14
pom.xml
|
@ -310,6 +310,20 @@
|
|||
</license>
|
||||
</licenses>
|
||||
|
||||
<distributionManagement>
|
||||
<!-- Deploy releases to GitHub Packages -->
|
||||
<repository>
|
||||
<id>github</id> <!-- This ID must match the server ID in your settings.xml -->
|
||||
<name>GitHub Packages</name>
|
||||
<url>https://maven.pkg.github.com/Memogoz/spring-petclinic</url> <!-- Use your GitHub username and repo name -->
|
||||
</repository>
|
||||
<!-- Deploy snapshots to GitHub Packages -->
|
||||
<snapshotRepository>
|
||||
<id>github</id> <!-- This ID must match the server ID in your settings.xml -->
|
||||
<name>GitHub Packages</name>
|
||||
<url>https://maven.pkg.github.com/Memogoz/spring-petclinic</url> <!-- Use your GitHub username and repo name -->
|
||||
</snapshotRepository>
|
||||
</distributionManagement>
|
||||
<repositories>
|
||||
<repository>
|
||||
<snapshots>
|
||||
|
|
Loading…
Reference in a new issue