Skip to content

Commit 3de7aca

Browse files
committed
Migrate off deprecated Gradle dependency syntax
1 parent 71b2d85 commit 3de7aca

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,21 +65,21 @@ 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: 'org.kohsuke', name: 'github-api', version: '1.330'
70-
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '5.1.0'
68+
implementation 'com.google.code.gson:gson:2.13.2'
69+
implementation 'org.kohsuke:github-api:1.330'
70+
implementation 'com.squareup.okhttp3:okhttp:5.1.0'
7171

7272
testImplementation project.deps.gocdPluginApi
7373
testImplementation platform('org.junit:junit-bom:6.0.0')
74-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
75-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params'
76-
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
77-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
78-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.27.6'
79-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
80-
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.3'
81-
testImplementation group: 'org.jsoup', name: 'jsoup', version: '1.21.2'
82-
testImplementation group: 'com.squareup.okhttp3', name: 'mockwebserver3-junit5', version: '5.1.0'
74+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
75+
testImplementation 'org.junit.jupiter:junit-jupiter-params'
76+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
77+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
78+
testImplementation 'org.assertj:assertj-core:3.27.6'
79+
testImplementation 'org.mockito:mockito-core:5.20.0'
80+
testImplementation 'org.skyscreamer:jsonassert:1.5.3'
81+
testImplementation 'org.jsoup:jsoup:1.21.2'
82+
testImplementation 'com.squareup.okhttp3:mockwebserver3-junit5:5.1.0'
8383

8484

8585
}

0 commit comments

Comments
 (0)