Skip to content

Commit

Permalink
Merge pull request #600 from openmobilemaps/bugfix/unneeded-maven
Browse files Browse the repository at this point in the history
Remove invalid maven reference
  • Loading branch information
maurhofer-ubique authored Feb 16, 2024
2 parents 79dcb01 + 7d09d03 commit aeeb65a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ buildscript {

repositories {
google()
maven ubiqueMaven
mavenCentral()
}

Expand Down Expand Up @@ -161,10 +160,10 @@ publishing {
repositories {
maven {
name = "UbiqueMaven"
url = ubiqueUrl
url = System.getenv('UBIQUE_ARTIFACTORY_URL') ?: readPropertyWithDefault('ubiqueArtifactoryUrl', '')
credentials {
username = ubiqueUser
password = ubiquePass
username = System.getenv('UBIQUE_ARTIFACTORY_USER') ?: readPropertyWithDefault('ubiqueArtifactoryUser', '')
password = System.getenv('UBIQUE_ARTIFACTORY_PASS') ?: readPropertyWithDefault('ubiqueArtifactoryPass', '')
}
}
}
Expand Down

0 comments on commit aeeb65a

Please sign in to comment.