Skip to content

Commit 21f3b3d

Browse files
muzimuzhimirkoperillo
authored andcommitted
Updated deprecated Gradle config, exercism#1853
s/testCompile/testImplementation/g
1 parent a587584 commit 21f3b3d

134 files changed

Lines changed: 134 additions & 134 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_template/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/basics/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/bird-watcher/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/booleans/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/chars/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/classes/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/conditionals/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/constructors/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

exercises/concept/inheritance/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
testCompile "junit:junit:4.13"
10+
testImplementation "junit:junit:4.13"
1111
testImplementation "org.assertj:assertj-core:3.15.0"
1212
}
1313

exercises/concept/interfaces/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
dependencies {
14-
testCompile "junit:junit:4.13"
14+
testImplementation "junit:junit:4.13"
1515
testImplementation "org.assertj:assertj-core:3.15.0"
1616
}
1717

0 commit comments

Comments
 (0)