Skip to content

Commit

Permalink
allow to specify local repo by env OSMAND_BINARIES_IVY_ROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
ntruchsess committed Apr 9, 2024
1 parent 5cecf2a commit 7b299c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ allprojects {
repositories {
ivy {
name = "OsmAndBinariesIvy"
url = "https://creator.osmand.net"
url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "https://creator.osmand.net/ivy"
patternLayout {
artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
artifact "[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
}
}
google()
Expand Down

0 comments on commit 7b299c3

Please sign in to comment.