mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
3992f17b32
- NPMRegistry was always an empty string - MTA did not use npm registry
17 lines
559 B
Groovy
17 lines
559 B
Groovy
import com.sap.piper.BuildTool
|
|
import com.sap.piper.DownloadCacheUtils
|
|
import groovy.transform.Field
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String METADATA_FILE = 'metadata/mavenBuild.yaml'
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = [ ]
|
|
final script = checkScript(this, parameters) ?: this
|
|
parameters = DownloadCacheUtils.injectDownloadCacheInParameters(script, parameters, BuildTool.MAVEN)
|
|
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|