2019-04-09 09:52:45 +02:00
|
|
|
import com.sap.piper.GenerateDocumentation
|
2017-12-06 13:03:06 +02:00
|
|
|
import com.sap.piper.DefaultValueCache
|
|
|
|
|
2018-10-09 17:09:55 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
2020-05-12 13:50:18 +02:00
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
|
2018-11-29 10:54:05 +02:00
|
|
|
@Field STEP_NAME = getClass().getName()
|
2018-10-09 17:09:55 +02:00
|
|
|
|
2019-03-29 13:14:01 +02:00
|
|
|
@Field Set GENERAL_CONFIG_KEYS = []
|
|
|
|
@Field Set STEP_CONFIG_KEYS = []
|
|
|
|
@Field Set PARAMETER_KEYS = []
|
|
|
|
|
2019-04-09 09:52:45 +02:00
|
|
|
/**
|
|
|
|
* Loads the pipeline library default values from the file `resources/default_pipeline_environment.yml`.
|
|
|
|
* Afterwards the values can be loaded by the method: `ConfigurationLoader.defaultStepConfiguration`
|
|
|
|
*/
|
|
|
|
@GenerateDocumentation
|
2018-08-30 16:33:07 +02:00
|
|
|
void call(Map parameters = [:]) {
|
2020-05-12 13:50:18 +02:00
|
|
|
def script = checkScript(this, parameters)
|
|
|
|
DefaultValueCache.prepare(script, parameters)
|
2017-12-06 13:03:06 +02:00
|
|
|
}
|