Skip to content

Commit

Permalink
Fix JFROG credentials
Browse files Browse the repository at this point in the history
Signed-off-by: Mostafa Ashraf <[email protected]>
  • Loading branch information
mshaa92 committed Aug 2, 2024
1 parent 80c7ad7 commit 362a58b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def prop = { String key ->
properties.containsKey(key) ? properties[key] as String : null
}

def internalRepo = prop("DOLBY_INTERNAL_MAVEN_URL")
def internalUser = prop("DOLBY_INTERNAL_MAVEN_USER")
def internalPassword = prop("DOLBY_INTERNAL_MAVEN_PASSWORD")
def internalRepo = System.env.JFROG_MAVEN_URL
def internalUser = System.env.JFROG_USERNAME
def internalPassword = System.env.JFROG_PASSWORD

def gitUserName = System.env.GIT_USERNAME ?: getGithubUsername()
def gitPat = System.env.GIT_PAT ?: getGithubUserPassword()
Expand Down

0 comments on commit 362a58b

Please sign in to comment.