Skip to content

Commit 00443df

Browse files
committed
Migrate off deprecated Gradle dependency syntax
1 parent 0ce18d3 commit 00443df

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,17 @@ ext {
6666

6767
dependencies {
6868
compileOnly project.deps.gocdPluginApi
69-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
69+
implementation 'com.google.code.gson:gson:2.13.2'
7070

7171
testImplementation platform('org.junit:junit-bom:6.0.0')
72-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
73-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
74-
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
75-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
76-
77-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
78-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.27.6'
79-
testImplementation group: 'cd.go.plugin', name: 'go-plugin-api', version: project.versions.gocdPluginApi
72+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
73+
testImplementation 'org.junit.jupiter:junit-jupiter-params'
74+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
75+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
76+
77+
testImplementation 'org.mockito:mockito-core:5.20.0'
78+
testImplementation 'org.assertj:assertj-core:3.27.6'
79+
testImplementation "cd.go.plugin:go-plugin-api:${project.versions.gocdPluginApi}"
8080
}
8181

8282
test {

0 commit comments

Comments
 (0)