Skip to content

Commit 6128416

Browse files
authored
[reposense#2201] Update Gradle to 8.13 (reposense#2312)
Update Gradle to 8.13 Let's update Gradle so we can access more modern plugins.
1 parent c03a8f9 commit 6128416

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id 'idea'
77
id 'jacoco'
88
id 'java'
9-
id 'com.github.johnrengelman.shadow' version '7.1.2'
9+
id 'com.github.johnrengelman.shadow' version '8.1.1'
1010
id 'com.liferay.node' version '7.2.18'
1111
id 'com.github.psxpaul.execfork' version '0.2.0'
1212
id 'com.palantir.git-version' version '0.13.0'
@@ -27,7 +27,7 @@ repositories {
2727

2828
configurations {
2929
systemtestImplementation.extendsFrom testImplementation
30-
systemtestRuntime.extendsFrom testRuntime
30+
systemtestRuntime.extendsFrom testRuntimeOnly
3131
}
3232

3333
dependencies {
@@ -255,7 +255,7 @@ tasks.withType(Copy) {
255255
}
256256

257257
jacoco {
258-
toolVersion = "0.8.7"
258+
toolVersion = "0.8.11"
259259
}
260260

261261
jacocoTestReport {
@@ -271,6 +271,7 @@ jacocoTestReport {
271271

272272
tasks.register('coverage', JacocoReport) {
273273
description 'Consolidates coverage data from unit, system, and frontend tests into a comprehensive report.'
274+
dependsOn test, systemtest
274275
}
275276

276277
coverage.configure {

gradle/wrapper/gradle-wrapper.jar

1.71 KB
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)