diff --git a/app/build.gradle b/app/build.gradle index 33768b31..6cd928ba 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,9 +5,9 @@ android { buildToolsVersion "27.0.1" dependencies { - compile 'com.android.support:support-annotations:27.0.0' - compile "com.android.support:support-core-ui:27.0.0" - compile project(":terminal-view") + implementation 'com.android.support:support-annotations:27.0.0' + implementation "com.android.support:support-core-ui:27.0.0" + implementation project(":terminal-view") } defaultConfig { @@ -28,5 +28,5 @@ android { } dependencies { - testCompile 'junit:junit:4.12' + testImplementation 'junit:junit:4.12' } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 27768f1b..6b6ea3ab 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 62e1e30e..34c937c9 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,4 +1,4 @@ -distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-bin.zip distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStorePath=wrapper/dists diff --git a/terminal-emulator/build.gradle b/terminal-emulator/build.gradle index 97ddb9ac..b2402e92 100644 --- a/terminal-emulator/build.gradle +++ b/terminal-emulator/build.gradle @@ -56,7 +56,7 @@ tasks.withType(Test) { } dependencies { - testCompile 'junit:junit:4.12' + testImplementation 'junit:junit:4.12' } apply from: '../scripts/bintray-publish.gradle' diff --git a/terminal-view/build.gradle b/terminal-view/build.gradle index 0460d0ea..7e49750e 100644 --- a/terminal-view/build.gradle +++ b/terminal-view/build.gradle @@ -21,8 +21,8 @@ android { buildToolsVersion "27.0.1" dependencies { - compile 'com.android.support:support-annotations:27.0.0' - compile project(":terminal-emulator") + implementation 'com.android.support:support-annotations:27.0.0' + api project(":terminal-emulator") } defaultConfig { @@ -40,7 +40,7 @@ android { } dependencies { - testCompile 'junit:junit:4.12' + testImplementation 'junit:junit:4.12' } apply from: '../scripts/bintray-publish.gradle'