summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoah-livio <95378272+noah-livio@users.noreply.github.com>2022-04-08 10:48:48 -0400
committerGitHub <noreply@github.com>2022-04-08 10:48:48 -0400
commit1abdbf8e59881cba2c54e47fef9c1e4ecb929063 (patch)
tree740b90e4ddc5e30aed7bb67acfb90bde17efa5be
parent01fa481fb39e292c9b07327c561eda99cdca0b20 (diff)
downloadsdl_android-1abdbf8e59881cba2c54e47fef9c1e4ecb929063.tar.gz
Replace testCompile with testImplementation (#1806)
-rw-r--r--javaSE/javaSE/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/javaSE/javaSE/build.gradle b/javaSE/javaSE/build.gradle
index d69a60f59..c20713e51 100644
--- a/javaSE/javaSE/build.gradle
+++ b/javaSE/javaSE/build.gradle
@@ -28,7 +28,7 @@ configurations {
}
dependencies {
- testCompile group: 'junit', name: 'junit', version: '4.12'
+ testImplementation group: 'junit', name: 'junit', version: '4.12'
extraLibs fileTree(dir: 'libs', include: ['*.jar'])
extraLibs 'org.mongodb:bson:4.0.5'
extraLibs 'androidx.annotation:annotation:1.1.0'