From feecb73d9092477aff0a93a4ff4429307b009a1b Mon Sep 17 00:00:00 2001 From: Yeray Borges Date: Mon, 4 May 2020 12:46:43 +0100 Subject: [PATCH] [WFLY-13353] Galleon layer for the Pojo subsystem --- ...3353_galleon_layer_for_pojo_subsystem.adoc | 100 ++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 pojo/WFLY-13353_galleon_layer_for_pojo_subsystem.adoc diff --git a/pojo/WFLY-13353_galleon_layer_for_pojo_subsystem.adoc b/pojo/WFLY-13353_galleon_layer_for_pojo_subsystem.adoc new file mode 100644 index 000000000..6b364bc90 --- /dev/null +++ b/pojo/WFLY-13353_galleon_layer_for_pojo_subsystem.adoc @@ -0,0 +1,100 @@ += Galleon layer for the Pojo subsystem +:author: Yeray Borges +:email: yborgess@redhat.com +:toc: left +:icons: font +:idprefix: +:idseparator: - + +== Overview + +The Pojo subsystem enables the deployment of applications containing JBoss Microcontainer services, as supported by previous versions of JBoss Application Server. + +The goal of this feature is to supply a https://docs.wildfly.org/galleon/#_layers[Galleon layer] which will be responsible for providing the pojo subsystem. + +The following is a configuration example of the WildFly bootable jar maven plugin to provision a server with the `pojo` layer: + +[source,xml] +---- + + org.wildfly.plugins + wildfly-jar-maven-plugin + + wildfly@maven(org.jboss.universe:community-universe)#${version.wildfly} + + pojo + + + + + + package + + + + +---- + +== Issue Metadata + +=== Issue + +* https://issues.jboss.org/browse/WFLY-13353[WFLY-13353 Add a Galleon layer for the POJO subsystem] +* https://issues.redhat.com/browse/EAP7-1483[EAP7-1483 Add Galleon layers for remaining non-deprecated subsystems] + +=== Dev Contacts + +* mailto:brian.stansberry@redhat.com[Brian Stansberry] +* mailto:{email}[{author}] + +=== QE Contacts + +* mailto:fburzigo@redhat.com[Fabio Burzigotti] +* mailto:jkasik@redhat.com[Jan Kasik] + +=== Testing By + +* [X] Engineering + +* [ ] QE + +=== Affected Projects or Components + +WildFly + +=== Other Interested Projects + +N/A + +== Requirements + +=== Hard Requirements + +* The Galleon layer must provide the pojo subsystem. + +=== Nice-to-Have Requirements + +N/A + +=== Non-Requirements + +N/A + +== Test Plan + +The test coverage of the Galleon layer added by this proposal is divided in two main groups: + +. Testing the Galleon layer provisioning. This testing is done by https://github.com/wildfly/wildfly/blob/master/testsuite/layers/src/test/java/org/jboss/as/test/layers/LayersTestCase.java[LayersTestCase]. The testsuite will be modified to add a new server provisioned with this layer in isolation and with this layer combined with all the layers. For each kind of provisioning, this test does the following: + +.. Verifies the provisioned modules are the expected ones. +.. Verifies the provisioned server starts successfully. + +. Execution of WildFly tests related to the feature provisioned by this layer. Reuse the existing tests available on the WildFly test suite, which are directly testing this layer functionalities, and execute them on a server installation provisioned with this layer. + +== Community Documentation + +Community documentation plan is adding the layer to https://docs.wildfly.org/20/Admin_Guide.html#wildfly-galleon-layers[WildFly Galleon layers] in the section it belongs to. + +== Release Note Content + +A Galleon layer to give support to WildFly pojo subsystem. \ No newline at end of file