Skip to content

Commit

Permalink
Add a flag to disable my prebuilt binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch4t4r committed Aug 22, 2021
1 parent 43e6155 commit 03ba867
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,13 @@ allprojects {
mavenLocal()
google()
mavenCentral()
maven {
url 'https://nexus.frostnerd.com/repository/libs-release/'
credentials {
username = "$nexus_user"
password = "$nexus_password"
if(System.getenv("NO_PREBUILD_BINARIES") == null) {
maven {
url 'https://nexus.frostnerd.com/repository/libs-release/'
credentials {
username = "$nexus_user"
password = "$nexus_password"
}
}
}
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
Expand Down

0 comments on commit 03ba867

Please sign in to comment.