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

Commit

Permalink
Updated repositories. Changed compile to implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtogneri committed Jan 6, 2018
1 parent ce84fcd commit a5fac7d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 17 deletions.
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

0 comments on commit a5fac7d

Please sign in to comment.