Skip to content

Commit 996e45d

Browse files
committed
Migrate off deprecated Gradle dependency syntax
1 parent 67aa492 commit 996e45d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ ext {
4343
}
4444

4545
dependencies {
46-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.13.2'
47-
implementation group: 'org.apache.ant', name: 'ant', version: '1.10.15'
48-
implementation group: 'com.beust', name: 'jcommander', version: '1.82'
46+
implementation 'com.google.code.gson:gson:2.13.2'
47+
implementation 'org.apache.ant:ant:1.10.15'
48+
implementation 'com.beust:jcommander:1.82'
4949

5050
compileOnly "cd.go.plugin:go-plugin-api:$pluginApiVersion"
5151
testImplementation "cd.go.plugin:go-plugin-api:$pluginApiVersion"
5252

5353
testImplementation platform('org.junit:junit-bom:6.0.0')
54-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api'
55-
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine'
56-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher'
57-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.20.0'
58-
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '3.0'
54+
testImplementation 'org.junit.jupiter:junit-jupiter-api'
55+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
56+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
57+
testImplementation 'org.mockito:mockito-core:5.20.0'
58+
testImplementation 'org.hamcrest:hamcrest:3.0'
5959
}
6060

6161
processResources {

0 commit comments

Comments
 (0)