Skip to content

Commit c62995d

Browse files
Fix typo
1 parent 5708a2e commit c62995d

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
@@ -75,8 +75,8 @@ publishing {
7575
def snapshotsRepoUrl = "http://192.168.0.20:8081/repository/maven-snapshots/"
7676
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
7777
credentials {
78-
username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System..getenv('NEXUS_USERNAME') : '')
79-
password = project.hasProperty('nexus_password') ? nexus_password : (System.getenv('NEXUS_PASSWORD') != null ? System..getenv('NEXUS_PASSWORD') : '')
78+
username = project.hasProperty('nexus_username') ? nexus_username : (System.getenv('NEXUS_USERNAME') != null ? System.getenv('NEXUS_USERNAME') : '')
79+
password = project.hasProperty('nexus_password') ? nexus_password : (System.getenv('NEXUS_PASSWORD') != null ? System.getenv('NEXUS_PASSWORD') : '')
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)