Skip to content

Commit

Permalink
We go once again
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Jun 16, 2023
1 parent 2396c97 commit a674f57
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_maven_central.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./mvnw deploy jreleaser:deploy -DaltDeploymentRepository=local::file:./target/staging-deploy --no-transfer-progress
run: ./mvnw -Prelease deploy jreleaser:deploy -DaltDeploymentRepository=local::file:./target/staging-deploy --no-transfer-progress
67 changes: 41 additions & 26 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,35 +39,50 @@
<release>11</release>
<repository-head>nightly</repository-head>
</properties>

<distributionManagement>
<repository>
<id>karus</id>
<url>https://repo.karuslabs.com/repository/elementary-releases</url>
</repository>

<snapshotRepository>
<id>karus</id>
<url>https://repo.karuslabs.com/repository/elementary-snapshots/</url>
</snapshotRepository>

<site>
<id>karus</id>
<url>dav:https://repo.karuslabs.com/repository/elementary/${repository-head}/</url>
</site>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
</profile>

<profile>
<id>development</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>

<distributionManagement>
<repository>
<id>karus</id>
<url>https://repo.karuslabs.com/repository/elementary-releases</url>
</repository>

<snapshotRepository>
<id>karus</id>
<url>https://repo.karuslabs.com/repository/elementary-snapshots/</url>
</snapshotRepository>

<site>
<id>karus</id>
<url>dav:https://repo.karuslabs.com/repository/elementary/${repository-head}/</url>
</site>
</distributionManagement>

<repositories>
<repository>
<id>elementary-releases</id>
<url>https://repo.karuslabs.com/repository/elementary-releases/</url>
</repository>

<repository>
<id>elementary-snapshots</id>
<url>https://repo.karuslabs.com/repository/elementary-snapshots/</url>
</repository>
</repositories>
</profile>
</profiles>

<repositories>
<repository>
<id>elementary-releases</id>
<url>https://repo.karuslabs.com/repository/elementary-releases/</url>
</repository>

<repository>
<id>elementary-snapshots</id>
<url>https://repo.karuslabs.com/repository/elementary-snapshots/</url>
</repository>
</repositories>

<modules>
<module>elementary</module>
Expand Down

0 comments on commit a674f57

Please sign in to comment.