Skip to content

Commit 9d3ccee

Browse files
Fix internal maven repo address
1 parent 52ec1b6 commit 9d3ccee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ publishing {
7272
}
7373
repositories {
7474
maven {
75-
def releasesRepoUrl = "http://192.168.0.20:8081/repository/maven-releases/"
76-
def snapshotsRepoUrl = "http://192.168.0.20:8081/repository/maven-snapshots/"
75+
def releasesRepoUrl = "http://192.168.0.20:4540/repository/maven-releases/"
76+
def snapshotsRepoUrl = "http://192.168.0.20:4540/repository/maven-snapshots/"
7777
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
7878
credentials {
7979
username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System.getenv('NEXUS_USERNAME') : '')

0 commit comments

Comments
 (0)