Skip to content

Commit c3608d8

Browse files
committed
Migrate off deprecated Gradle dependency syntax
1 parent a2a753f commit c3608d8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,19 +65,19 @@ ext {
6565

6666
dependencies {
6767
compileOnly project.deps.gocdPluginApi
68-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
69-
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '5.1.0'
68+
implementation 'com.google.code.gson:gson:2.13.2'
69+
implementation 'com.squareup.okhttp3:okhttp:5.1.0'
7070

7171
testImplementation project.deps.gocdPluginApi
7272
testImplementation platform('org.junit:junit-bom:6.0.0')
73-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
74-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
75-
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
76-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
77-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
78-
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '3.0'
79-
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.3'
80-
testImplementation group: 'com.squareup.okhttp3', name: 'mockwebserver3-junit5', version: '5.1.0'
73+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
74+
testImplementation 'org.junit.jupiter:junit-jupiter-params'
75+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
76+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
77+
testImplementation 'org.mockito:mockito-core:5.20.0'
78+
testImplementation 'org.hamcrest:hamcrest:3.0'
79+
testImplementation 'org.skyscreamer:jsonassert:1.5.3'
80+
testImplementation 'com.squareup.okhttp3:mockwebserver3-junit5:5.1.0'
8181
}
8282

8383
test {

0 commit comments

Comments
 (0)