fix mirrors example

This commit is contained in:
Slawomir Jaranowski
2020-04-06 22:37:48 +02:00
parent 10967cd2f2
commit b818438be1
3 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,7 @@ jobs:
with:
servers: '[{"id": "serverId", "username": "username", "password": "password"}]'
properties: '[{"prop1": "value1"}, {"prop2": "value2"}]'
mirrors: '[{"id": "mirrorId", "name": "mirrorName", "mirrorOf": "mirrorOf", "url: "mirrorUrl"}]'
mirrors: '[{"id": "mirrorId", "name": "mirrorName", "mirrorOf": "mirrorOf", "url": "mirrorUrl"}]'
sonatypeSnapshots: true
- run: cat ~/.m2/settings.xml

1
.gitignore vendored
View File

@ -3,6 +3,7 @@ node_modules/
# Editors
.vscode
.idea
# Logs
logs

View File

@ -10,7 +10,7 @@ inputs:
description: 'servers definition in joson array, eg: [{"id": "serverId", "username": "username", "password": "password"}]'
required: false
mirrors:
description: 'mirrors definition in json array, eg: [{"id": "id", "name": "name", "mirrorOf": "mirrorOf", "url: "url"}]'
description: 'mirrors definition in json array, eg: [{"id": "id", "name": "name", "mirrorOf": "mirrorOf", "url": "url"}]'
required: false
properties:
description: 'json array with properties, eg [{"propertyName1": "propertyValue1"}, {"propertyName2": "propertyValue2"}]'