1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-02-01 13:18:04 +02:00

42 lines
1.0 KiB
Markdown
Raw Normal View History

2017-07-11 15:12:03 +02:00
# toolValidate
## Description
2017-07-11 15:12:03 +02:00
Checks the existence and compatibility of a tool, necessary for a successful pipeline execution.
In case a violation is found, an exception is raised.
## Prerequisites
none
2017-07-11 15:12:03 +02:00
## Parameters
2017-07-11 15:12:03 +02:00
| parameter | mandatory | default | possible values |
| -----------------|-----------|-----------------------------------|----------------------------|
| `tool` | yes | | 'java', 'mta', 'neo' |
| `home` | yes | | |
* `tool` The tool that is checked for existence and compatible version.
* `home` The location in the file system where Jenkins can access the tool.
2018-03-06 13:43:53 +01:00
## Step configuration
2018-03-06 13:43:53 +01:00
none
## Side effects
none
## Exceptions
* `IllegalArgumentException`:
* If at least one of the parameters `tool`, `home` is not provided.
* `AbortException`:
* If `tool` is not supported.
2017-07-11 15:12:03 +02:00
## Example
2017-07-11 15:12:03 +02:00
```groovy
toolValidate tool: 'neo', home:'/path/to/neo-java-web-sdk'
```