Skip to content

Commit

Permalink
Fix internal maven repo address
Browse files Browse the repository at this point in the history
  • Loading branch information
PseudoResonance committed Jul 4, 2020
1 parent 52ec1b6 commit 9d3ccee
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 @@ -72,8 +72,8 @@ publishing {
}
repositories {
maven {
def releasesRepoUrl = "http://192.168.0.20:8081/repository/maven-releases/"
def snapshotsRepoUrl = "http://192.168.0.20:8081/repository/maven-snapshots/"
def releasesRepoUrl = "http://192.168.0.20:4540/repository/maven-releases/"
def snapshotsRepoUrl = "http://192.168.0.20:4540/repository/maven-snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System.getenv('NEXUS_USERNAME') : '')
Expand Down

0 comments on commit 9d3ccee

Please sign in to comment.