Skip to content

Commit

Permalink
localEnv does only work on a Docker environment
Browse files Browse the repository at this point in the history
  • Loading branch information
purejava committed Jan 11, 2025
1 parent 992a147 commit b579132
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 @@ -26,8 +26,8 @@ version = '1.2.8'
description = 'A Java library to access KeePassXC via its build-in proxy.'
java.sourceCompatibility = JavaVersion.VERSION_17

def sonatypeUsername = localEnv.getProperty("SONATYPE_USERNAME") ?: System.getenv("SONATYPE_USERNAME")
def sonatypePassword = localEnv.getProperty("SONATYPE_PASSWORD") ?: System.getenv("SONATYPE_PASSWORD")
def sonatypeUsername = System.getenv("SONATYPE_USERNAME")
def sonatypePassword = System.getenv("SONATYPE_PASSWORD")

java {
withSourcesJar()
Expand Down

0 comments on commit b579132

Please sign in to comment.