Skip to content

Commit d19ca2d

Browse files
committed
Setter groupId på maven artefacten
1 parent f70ba49 commit d19ca2d

File tree

2 files changed

+48
-46
lines changed

2 files changed

+48
-46
lines changed

.github/workflows/build-and-release.yml

+47-46
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Build and release new version
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- main
67

78
jobs:
89
test:
@@ -16,48 +17,48 @@ jobs:
1617
name: Build & Test
1718

1819
steps:
19-
- uses: actions/checkout@v4
20-
with:
21-
fetch-depth: 0
22-
- name: Setup JDK
23-
uses: actions/[email protected]
24-
with:
25-
distribution: 'temurin'
26-
java-version: 21
27-
- name: Setup Gradle for a non-wrapper project
28-
uses: gradle/actions/setup-gradle@v4
29-
with:
30-
gradle-version: 8.7
31-
32-
- name: Build and run tests
33-
run: gradle test --info
34-
35-
- uses: paulhatch/[email protected]
36-
id: tag
37-
with:
38-
bump_each_commit: true
39-
tag_prefix: ""
40-
41-
- id: notes
42-
run: |
43-
randomDelimiter=${RANDOM}
44-
text="$(git --no-pager log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%h %s")"
45-
echo 'CHANGELOG<<$randomDelimiter' >> $GITHUB_OUTPUT
46-
echo $text >> $GITHUB_OUTPUT
47-
echo '$randomDelimiter' >> $GITHUB_OUTPUT
48-
49-
- uses: actions/[email protected]
50-
id: create_release
51-
env:
52-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53-
with:
54-
tag_name: ${{ steps.tag.outputs.version }}
55-
release_name: ${{ steps.tag.outputs.version }}
56-
body: |
57-
Changes in this Release
58-
${{ steps.notes.outputs.CHANGELOG }}
59-
60-
- name: Publish
61-
run: gradle -Pversion=${{ steps.tag.outputs.version }} publish
62-
env:
63-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
- uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
- name: Setup JDK
24+
uses: actions/[email protected]
25+
with:
26+
distribution: 'temurin'
27+
java-version: 21
28+
- name: Setup Gradle for a non-wrapper project
29+
uses: gradle/actions/setup-gradle@v4
30+
with:
31+
gradle-version: 8.7
32+
33+
- name: Build and run tests
34+
run: gradle test --info
35+
36+
- uses: paulhatch/[email protected]
37+
id: tag
38+
with:
39+
bump_each_commit: true
40+
tag_prefix: ""
41+
42+
- id: notes
43+
run: |
44+
randomDelimiter=${RANDOM}
45+
text="$(git --no-pager log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%h %s")"
46+
echo 'CHANGELOG<<$randomDelimiter' >> $GITHUB_OUTPUT
47+
echo $text >> $GITHUB_OUTPUT
48+
echo '$randomDelimiter' >> $GITHUB_OUTPUT
49+
50+
- uses: actions/[email protected]
51+
id: create_release
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
with:
55+
tag_name: ${{ steps.tag.outputs.version }}
56+
release_name: ${{ steps.tag.outputs.version }}
57+
body: |
58+
Changes in this Release
59+
${{ steps.notes.outputs.CHANGELOG }}
60+
61+
- name: Publish
62+
run: gradle -Pversion=${{ steps.tag.outputs.version }} publish
63+
env:
64+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ subprojects {
4646
publishing {
4747
publications {
4848
create<MavenPublication>("mavenJava") {
49+
groupId = "no.nav.aap.kelvin"
4950
artifactId = project.name
5051
version = project.findProperty("version")?.toString() ?: "0.0.0"
5152
from(components["java"])

0 commit comments

Comments
 (0)