Skip to content

Commit

Permalink
fix: add setup-java action to Nexus workflow with only the java-versi…
Browse files Browse the repository at this point in the history
…on and distribution options (#12)
  • Loading branch information
ferre-vaes authored May 10, 2024
1 parent a913613 commit c0e927b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/http-plane-headers-extension-nexus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'zulu'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Build & Publish Package
Expand Down
2 changes: 1 addition & 1 deletion http-plane-headers-extension/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ tasks.register<Jar>("sourcesJar") {
publishing {
publications {
val publication = create<MavenPublication>("shadowJar") {
groupId = "be.vlaanderen.informatievlaanderen"
groupId = "be.vlaanderen.informatievlaanderen.ldes"
artifactId = "http-plane-headers-extension"

artifact(tasks["javadocJar"])
Expand Down

0 comments on commit c0e927b

Please sign in to comment.