Skip to content

Commit

Permalink
add files to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLichtenberger committed Nov 16, 2023
1 parent 4d88c43 commit a03bda0
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 @@ -187,8 +187,8 @@ subprojects {
repositories {
maven {
credentials {
username System.getenv("SONATYPE_NEXUS_USERNAME")
password System.getenv("SONATYPE_NEXUS_PASSWORD")
username System.hasProperty("SONATYPE_NEXUS_USERNAME") ? System.getProperty("SONATYPE_NEXUS_USERNAME") : System.getenv("SONATYPE_NEXUS_USERNAME")
password System.hasProperty("SONATYPE_NEXUS_PASSWORD") ? System.getProperty("SONATYPE_NEXUS_PASSWORD") : System.getenv("SONATYPE_NEXUS_PASSWORD")
}
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
Expand Down

0 comments on commit a03bda0

Please sign in to comment.