Skip to content

Commit

Permalink
Added google() and jcenter() repos to build.gradle files where applic…
Browse files Browse the repository at this point in the history
…able. Removed mavenCentral() repo where applicable, and kept where necessary.
  • Loading branch information
topherbuckley committed Aug 18, 2020
1 parent c264bde commit aa37396
Show file tree
Hide file tree
Showing 23 changed files with 68 additions and 29 deletions.
2 changes: 2 additions & 0 deletions software/IOIOBridge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ dependencies {

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
2 changes: 2 additions & 0 deletions software/IOIODude/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ dependencies {

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/IOIOLibAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.library'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/IOIOLibAndroidAccessory/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.library'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/IOIOLibAndroidBluetooth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.library'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/IOIOLibAndroidDevice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.library'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
6 changes: 4 additions & 2 deletions software/applications/HelloIOIO/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand All @@ -23,6 +24,7 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
}

6 changes: 4 additions & 2 deletions software/applications/HelloIOIOService/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand All @@ -23,6 +24,7 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
}

6 changes: 4 additions & 2 deletions software/applications/HolidayIOIO/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand All @@ -23,6 +24,7 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
}

4 changes: 2 additions & 2 deletions software/applications/IOIOConnectionTester/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'java'

dependencies {
compile 'com.google.guava:guava:12.0'
compile project(':IOIOLibCore')
implementation 'com.google.guava:guava:12.0'
implementation project(':IOIOLibCore')
}
12 changes: 7 additions & 5 deletions software/applications/IOIOConnectionTesterAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand All @@ -16,9 +17,10 @@ android {
}

dependencies {
compile project(':applications/IOIOConnectionTester')
compile 'com.github.ytai.ioio:IOIOLibAndroid:5.07'
compile 'com.github.ytai.ioio:IOIOLibAndroidBluetooth:5.07'
compile 'com.github.ytai.ioio:IOIOLibAndroidAccessory:5.07'
implementation 'com.google.guava:guava:12.0'
implementation project(':IOIOConnectionTester')
implementation 'com.github.ytai.ioio:IOIOLibAndroid:5.07'
implementation 'com.github.ytai.ioio:IOIOLibAndroidBluetooth:5.07'
implementation 'com.github.ytai.ioio:IOIOLibAndroidAccessory:5.07'
}

3 changes: 2 additions & 1 deletion software/applications/IOIOManager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
6 changes: 4 additions & 2 deletions software/applications/IOIOSimpleApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand All @@ -23,6 +24,7 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
}

3 changes: 2 additions & 1 deletion software/applications/IOIOTestBed/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/applications/IOIOTortureTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/applications/ShoeBot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.application'

buildscript {
repositories {
mavenCentral()
google()
jcenter()
}

dependencies {
Expand Down
5 changes: 4 additions & 1 deletion software/applications/pc/HelloIOIOConsole/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
maven { url "http://www.sparetimelabs.com/maven2" }
}

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
5 changes: 4 additions & 1 deletion software/applications/pc/HelloIOIOSwing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
maven { url "http://www.sparetimelabs.com/maven2" }
}

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
5 changes: 4 additions & 1 deletion software/applications/pc/HelloSequencer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ dependencies {
}

repositories {
mavenCentral()
google()
jcenter()
maven { url "http://www.sparetimelabs.com/maven2" }
}

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
7 changes: 5 additions & 2 deletions software/applications/pc/IOIOConnectionTesterPC/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@ task distJar(type: OneJar) {
tasks.build.dependsOn distJar

dependencies {
compile 'com.github.ytai.ioio:IOIOLibPC:5.07'
compile project(':applications/IOIOConnectionTester')
implementation project(':IOIOLibPC')
implementation project(':IOIOConnectionTester')
implementation 'com.google.guava:guava:12.0'
}

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
2 changes: 2 additions & 0 deletions software/applications/pc/IOIOServoSwing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ dependencies {

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
2 changes: 2 additions & 0 deletions software/applications/pc/SeeedTestbed/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ dependencies {

buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand Down
3 changes: 2 additions & 1 deletion software/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ subprojects {
apply plugin: 'signing'

repositories {
mavenCentral()
google()
jcenter()
maven {
url "http://www.sparetimelabs.com/maven2"
}
Expand Down

0 comments on commit aa37396

Please sign in to comment.