-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move SERVER_SECRET param to an optional workspace
Signed-off-by: Vincent Demeester <[email protected]>
- Loading branch information
1 parent
d8e49dc
commit 9e0d683
Showing
4 changed files
with
43 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
# task-maven | ||
# `maven` Tekton Task | ||
|
||
The `maven` Task can be used to run a Maven goal on a simple or multi-module maven project. | ||
|
||
## Workspaces | ||
|
||
### `source` | ||
|
||
The `source` is a required workspace, that contains the source of the "maven" project to build. It should contain a `pom.xml`. | ||
|
||
## Parameters | ||
|
||
| Parameter | Type | Default | Description | | ||
|:-------------------|:---------|:-----------|:-----------------------------------------------------------------------------------| | ||
| `GOALS` | `string` | `package` | The `maven` goal(s) to run | | ||
| `MAVEN_MIRROR_URL` | `string` | "" (empty) | The maven repository mirror URL to use | | ||
| `SUBDIRECTORY` | `string` | `.` | The subdirectory of the `source` workspace on which we want to execute maven goals | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters