Skip to content

Commit

Permalink
Adjust distribution management
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Mar 22, 2024
1 parent 495e312 commit 729a1e4
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,17 +181,23 @@
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
<profile>
<id>github-action</id>
<activation>
<property>
<name>env.GITHUB_REPOSITORY</name>
</property>
</activation>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Repository Apache Maven Packages</name>
<url>https://maven.pkg.github.com/${env.GITHUB_REPOSITORY}</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh-snapshots</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>


<developers>
<developer>
Expand Down

0 comments on commit 729a1e4

Please sign in to comment.