File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1- FROM gradle:8.7-jdk21 AS build
1+ FROM gradle:9.1.0-jdk25 AS build
22
33WORKDIR /app
44COPY --chown=gradle:gradle . /app
Original file line number Diff line number Diff line change @@ -2,13 +2,16 @@ plugins {
22 id " java"
33 id " application"
44 id " jacoco"
5- id " com.github.johnrengelman. shadow" version " 8.1.1 "
5+ id ' com.gradleup. shadow' version ' 9.2.2 '
66 id " ru.vyarus.mkdocs-build" version ' 4.0.1'
77}
88
99group = " org.exercism"
1010version = " 1.0-SNAPSHOT"
11- mainClassName = " analyzer.AnalyzerCli"
11+
12+ application {
13+ mainClass = " analyzer.AnalyzerCli"
14+ }
1215
1316repositories {
1417 mavenCentral()
@@ -22,6 +25,8 @@ dependencies {
2225 testImplementation " org.junit.jupiter:junit-jupiter"
2326 testImplementation " org.assertj:assertj-core:3.27.4"
2427 testImplementation " com.approvaltests:approvaltests:25.4.3"
28+
29+ testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
2530}
2631
2732shadowJar {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.7 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.1.0 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments