forked from wildfly-extras/wildfly-channel
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wildfly-extras#35] Support multiple version of a stream
* add a `stream.versions` field to be able to configure different * versions for the same artifact. This field is an object. Its keys are regular expressions that matches the base version of the artifact. The values are regular expressions that determins the latest version of the given base version As an example: ``` streams: - groupId: "io.undertow" artifactId: "undertow-core" versions: "\Q1.0.0.Final\E": "\Q1.0.0.Final\E" "\Q2.0.0.Final\E": "2\..*" ``` For the base version `1.0.0.Final`, it would also fetch the `1.0.0.Final` version. For the base version `2.0.0.Final`, it would fetch the latest version that matches `2\..*` (eg `2.3.4.Final`) This fixes wildfly-extras#35 Signed-off-by: Jeff Mesnil <[email protected]>
- Loading branch information
Showing
10 changed files
with
219 additions
and
21 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
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
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
Oops, something went wrong.