forked from wildfly/wildfly-core
-
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.
[WFCORE-6503]:Add support for unmanaged deployments with YAML extension.
* checking that the YAML deployment is unmanaged. * adding the unmanaged deployment to the list of operations * adding some light testing on this Jira: https://issues.redhat.com/browse/WFCORE-6503 Proposal: wildfly/wildfly-proposals#554 Signed-off-by: Emmanuel Hugonnet <[email protected]>
- Loading branch information
Showing
6 changed files
with
105 additions
and
10 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
14 changes: 14 additions & 0 deletions
14
...st/resources/org/jboss/as/test/manualmode/management/persistence/yaml/test-deployment.yml
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
wildfly-configuration: | ||
deployment: | ||
test.jar: | ||
content: | ||
- | ||
path: test.jar | ||
relative-to: jboss.server.base.dir | ||
archive: true | ||
hello.jar: | ||
content: | ||
- | ||
path: test.jar | ||
relative-to: jboss.server.base.dir | ||
archive: true |
12 changes: 12 additions & 0 deletions
12
...rces/org/jboss/as/test/manualmode/management/persistence/yaml/test-managed-deployment.yml
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
wildfly-configuration: | ||
deployment: | ||
test.jar: | ||
content: | ||
- | ||
path: test.jar | ||
relative-to: jboss.server.base.dir | ||
archive: true | ||
hello.jar: | ||
content: | ||
- | ||
empty: true |
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