Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Updated repositories. Changed compile to implementation. #233

Merged
merged 1 commit into from
Jan 18, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

buildscript {
repositories {

maven {
url 'https://maven.google.com'
}

google()
jcenter()
}
dependencies {
Expand All @@ -23,16 +19,12 @@ allprojects {

project.ext {
compileSdkVersion=27
buildToolsVersion='27.0.2'
buildToolsVersion='27.0.3'
androidSupportVersion='27.0.2'
}

repositories {

maven {
url 'https://maven.google.com'
}

google()
jcenter()
}
}
4 changes: 2 additions & 2 deletions eyes-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ android {
}

dependencies {
compile project(':tess-two')
compile fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':tess-two')
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
4 changes: 2 additions & 2 deletions tess-two-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ android {
}

dependencies {
compile project(':tess-two')
testCompile 'junit:junit:4.12'
implementation project(':tess-two')
testImplementation 'junit:junit:4.12'
}
4 changes: 2 additions & 2 deletions tess-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "com.android.support:support-annotations:$project.ext.androidSupportVersion"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:support-annotations:$project.ext.androidSupportVersion"
}


Expand Down