Skip to content

Commit 8eb62c1

Browse files
committed
Prepare for Gradle 10 and fix eslint config
1 parent d36a151 commit 8eb62c1

20 files changed

Lines changed: 96 additions & 96 deletions

File tree

AntTasks/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ dependencies {
2222
implementation ':SpecsUtils'
2323

2424
// Ivy dependencies
25-
implementation group: 'org.apache.ant', name: 'ant', version: '1.9.1'
26-
implementation group: 'org.apache.ivy', name: 'ivy', version: '2.5.0-rc1'
27-
implementation group: 'org.apache.ant', name: 'ant-jsch', version: '1.10.5'
28-
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
29-
implementation group: 'com.io7m.xom', name: 'xom', version: '1.2.10'
25+
implementation 'org.apache.ant:ant:1.9.1'
26+
implementation 'org.apache.ivy:ivy:2.5.0-rc1'
27+
implementation 'org.apache.ant:ant-jsch:1.10.5'
28+
implementation 'org.slf4j:slf4j-simple:1.7.25'
29+
implementation 'com.io7m.xom:xom:1.2.10'
3030
}
3131

3232
// Project sources

AsmParser/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
implementation ':SpecsUtils'
2222
implementation ':jOptions'
2323

24-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.12.1'
24+
implementation 'com.google.code.gson:gson:2.12.1'
2525
}
2626

2727
// Project sources

CommonsCompressPlus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
dependencies {
1919
implementation ':SpecsUtils'
2020

21-
implementation group: 'org.apache.commons', name: 'commons-compress', version: '1.27.1'
21+
implementation 'org.apache.commons:commons-compress:1.27.1'
2222
}
2323

2424
// Project sources

CommonsLangPlus/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ repositories {
1717
}
1818

1919
dependencies {
20-
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.18.0'
21-
implementation group: 'org.apache.commons', name: 'commons-text', version: '1.13.0'
20+
implementation 'org.apache.commons:commons-lang3:3.18.0'
21+
implementation 'org.apache.commons:commons-text:1.13.0'
2222

2323
// Testing dependencies
24-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.0'
25-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.5.0'
26-
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.5.0'
27-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
28-
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0' // For static mocking
29-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.10.0'
24+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
25+
testImplementation 'org.mockito:mockito-core:5.5.0'
26+
testImplementation 'org.mockito:mockito-junit-jupiter:5.5.0'
27+
testImplementation 'org.assertj:assertj-core:3.24.2'
28+
testImplementation 'org.mockito:mockito-inline:5.2.0' // For static mocking
29+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.0'
3030
}
3131

3232
// Project sources

GearmanPlus/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ repositories {
2121
dependencies {
2222
implementation ':SpecsUtils'
2323

24-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.12.1'
25-
implementation group: 'org.gearman.jgs', name: 'java-gearman-service', version: '0.7.0-SNAPSHOT'
24+
implementation 'com.google.code.gson:gson:2.12.1'
25+
implementation 'org.gearman.jgs:java-gearman-service:0.7.0-SNAPSHOT'
2626
}
2727

2828
// Project sources

GitPlus/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ repositories {
1919
dependencies {
2020
implementation ':SpecsUtils'
2121

22-
implementation group: 'com.google.guava', name: 'guava', version: '33.4.0-jre'
23-
implementation group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '7.1.0.202411261347-r'
22+
implementation 'com.google.guava:guava:33.4.0-jre'
23+
implementation 'org.eclipse.jgit:org.eclipse.jgit:7.1.0.202411261347-r'
2424

2525
// JUnit 5 testing framework
26-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.0'
27-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.5.0'
28-
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.5.0'
29-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
30-
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0' // For static mocking
31-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.10.0'
26+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
27+
testImplementation 'org.mockito:mockito-core:5.5.0'
28+
testImplementation 'org.mockito:mockito-junit-jupiter:5.5.0'
29+
testImplementation 'org.assertj:assertj-core:3.24.2'
30+
testImplementation 'org.mockito:mockito-inline:5.2.0' // For static mocking
31+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.0'
3232
}
3333

3434
// Project sources

GitlabPlus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
implementation ':GsonPlus'
2020
implementation ':SpecsUtils'
2121

22-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.4'
22+
implementation 'com.google.code.gson:gson:2.4'
2323
}
2424

2525
// Project sources

Gprofer/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717

1818
dependencies {
1919
implementation ':SpecsUtils'
20-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.12.1'
20+
implementation 'com.google.code.gson:gson:2.12.1'
2121
}
2222

2323
// Project sources

GsonPlus/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repositories {
1818
dependencies {
1919
implementation ':SpecsUtils'
2020

21-
implementation group: 'com.google.code.gson', name: 'gson', version: '2.12.1'
21+
implementation 'com.google.code.gson:gson:2.12.1'
2222
}
2323

2424
// Project sources

JacksonPlus/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ repositories {
1717
}
1818

1919
dependencies {
20-
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.18.3'
20+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.3'
2121

2222
// Testing dependencies
23-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.10.0'
24-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.5.0'
25-
testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '5.5.0'
26-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
27-
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '5.2.0' // For static mocking
28-
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.10.0'
23+
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
24+
testImplementation 'org.mockito:mockito-core:5.5.0'
25+
testImplementation 'org.mockito:mockito-junit-jupiter:5.5.0'
26+
testImplementation 'org.assertj:assertj-core:3.24.2'
27+
testImplementation 'org.mockito:mockito-inline:5.2.0' // For static mocking
28+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.0'
2929
}
3030

3131
// Project sources

0 commit comments

Comments
 (0)