Skip to content

Commit 3d39b74

Browse files
authored
Update gradle version and dependencies (#11)
1 parent bcc6880 commit 3d39b74

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

.github/workflows/build_master.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818
- name: Set up JDK 17
19-
uses: actions/setup-java@v1
19+
uses: actions/setup-java@v4
2020
with:
2121
java-version: 17
22+
distribution: 'temurin'
2223
- name: Gradle caches
23-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2425
with:
2526
path: |
2627
~/.gradle/caches

.github/workflows/build_standard.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ jobs:
1515
with:
1616
fetch-depth: 0
1717
- name: Set up JDK 17
18-
uses: actions/setup-java@v1
18+
uses: actions/setup-java@v4
1919
with:
2020
java-version: 17
21+
distribution: 'temurin'
2122
- name: Gradle caches
22-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2324
with:
2425
path: |
2526
~/.gradle/caches

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
- name: Set up JDK 17
17-
uses: actions/setup-java@v1
17+
uses: actions/setup-java@v4
1818
with:
1919
java-version: 17
20+
distribution: 'temurin'
2021
- name: Gradle caches
21-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2223
with:
2324
path: |
2425
~/.gradle/caches

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'jacoco'
44
id 'maven-publish'
55
id 'signing'
6-
id 'nebula.release' version '13.0.0'
6+
id 'nebula.release' version '20.2.0'
77
}
88

99
group 'org.contextmapper'
@@ -24,6 +24,7 @@ dependencies {
2424

2525
testImplementation "org.assertj:assertj-core:${assertJVersion}"
2626
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${jUnitVersion}"
27+
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
2728
}
2829

2930
sourceSets.test.java.srcDirs = ['src/test/java','src/test/cml']
@@ -34,8 +35,8 @@ test {
3435

3536
jacocoTestReport {
3637
reports {
37-
xml.enabled true
38-
html.enabled true
38+
xml.required = true
39+
html.required = true
3940
}
4041
}
4142

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ ossSnapshotRepository=https://oss.sonatype.org/content/repositories/snapshots/
33
ossReleaseStagingRepository=https://oss.sonatype.org/service/local/staging/deploy/maven2/
44

55
# dependency versions
6-
jUnitVersion=5.9.2
7-
assertJVersion=3.24.2
8-
archUnitVersion=1.0.1
6+
jUnitVersion=5.12.2
7+
assertJVersion=3.27.3
8+
archUnitVersion=1.4.1
99
cmlVersion=6.7.0
10-
jmoleculesVersion=1.6.0
10+
jmoleculesVersion=1.10.0
1111
xtendLibVersion=2.19.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)