Skip to content

Commit edfaf98

Browse files
committed
Java25
1 parent 6d0880a commit edfaf98

5 files changed

Lines changed: 257 additions & 4 deletions

File tree

.github/workflows/ci-build-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
ARTEFACT_VERSION: ${{ needs.Artefact-Version.outputs.artefact_version }}
7171
run: |
7272
echo "Building with ARTEFACT_VERSION=$ARTEFACT_VERSION"
73-
gradle build -DARTEFACT_VERSION=$ARTEFACT_VERSION
73+
./gradlew build -DARTEFACT_VERSION=$ARTEFACT_VERSION
7474
7575
- name: Extract repo name
7676
id: repo_vars
@@ -121,7 +121,7 @@ jobs:
121121
122122
echo "Publishing artefact for version: $ARTEFACT_VERSION"
123123
124-
gradle publish \
124+
./gradlew publish \
125125
-DARTEFACT_VERSION=$ARTEFACT_VERSION \
126126
-DGITHUB_REPOSITORY=${{ github.repository }} \
127127
-DGITHUB_ACTOR=${{ github.actor }} \

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ bin/*
33
!bin/run-in-docker.sh
44
.gradle
55
/build/
6-
/gradlew
76
/gradlew.bat
8-
!gradle/wrapper/gradle-wrapper.properties
97
*.class
108
bin/main/application.yaml
119

gradle/dependencies/java-core.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ dependencies {
2020
implementation "org.mapstruct:mapstruct:$mapstructVersion"
2121
annotationProcessor "org.mapstruct:mapstruct-processor:$mapstructVersion"
2222
}
23+
24+
tasks.named('wrapper') {
25+
delete "${projectDir}/gradlew.bat"
26+
}

gradle/wrapper/gradle-wrapper.jar

44.4 KB
Binary file not shown.

gradlew

Lines changed: 251 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)