Fix repo path

This commit is contained in:
Jim Nicholson 2024-02-26 12:53:19 -08:00
parent 9a5a52f2aa
commit e4ca5276a7
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ Jenkins Plugin dependencies:
Map call(Map config = [:], Map queryParams = [:]) {
Map defaults = [
nexusBase: 'https://repo.thejimnicholson.com',
searchAPI: 'service/rest/v1/search'
]

View File

@ -1,5 +1,5 @@
void call(Map config = [:], String packageName) {
publishURL = [ config.nexusBase, config.nexusRepository, config.nexusPath, packageName ].join('/')
publishURL = [ config.nexusBase, config.nexusRepository, config.nexusRepoPath, packageName ].join('/')
echo "Info: ${publishURL}"
}