Index: adblockplussbrowser/build.gradle |
=================================================================== |
--- a/adblockplussbrowser/build.gradle |
+++ b/adblockplussbrowser/build.gradle |
@@ -49,14 +49,14 @@ def updateBundledLists() { |
i -> new File(rootProject.ext.easyListFilePath).withOutputStream { it << i } |
} |
new URL(rootProject.ext.exceptionRulesUpdateUrl).withInputStream { |
i -> new File(rootProject.ext.exceptionRulesFilePath).withOutputStream { it << i } |
} |
} |
dependencies { |
- testCompile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" |
- compile "com.android.support:support-v4:$rootProject.ext.androidSupportLibraryVersion" |
- compile (group: 'commons-validator', name: 'commons-validator', version: '+') { |
+ testImplementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlinVersion" |
+ implementation "com.android.support:support-v4:$rootProject.ext.androidSupportLibraryVersion" |
+ implementation (group: 'commons-validator', name: 'commons-validator', version: '+') { |
exclude group: 'commons-logging', module: 'commons-logging' |
} |
} |