Skip to content

Commit

Permalink
Switch from JCenter to Maven Central (spaceapi-community#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn authored May 13, 2021
1 parent 7f195af commit f71f902
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
implementation "androidx.annotation:annotation:1.1.0"

// SpaceAPI Library
implementation "spaceapi-community:spaceapi-kt:0.2.1"
implementation "io.github.spaceapi-community:spaceapi-kt:0.3.0"

// JUnit for testing
testImplementation 'junit:junit:4.13.1'
Expand Down
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@

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

dependencies {
// Android gradle integration
classpath 'com.android.tools.build:gradle:4.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
maven { url "https://dl.bintray.com/spaceapi-community/maven" }
mavenCentral()
google()
}
}
Expand Down

0 comments on commit f71f902

Please sign in to comment.