Hi,
you can include packages. Look at :https://github.com/wildfly/wildfly/blob/main/ee-dist/pom.xml#L118
In your case include docs.contrib and docs.schema packages.
For javax.api and sun.jdk modules, you can look at the JIRA that
removed them: https://issues.redhat.com/browse/WFLY-17931 and
https://issues.redhat.com/browse/WFLY-17932 There are no layers to
bring them.
JF
--
You received this message because you are subscribed to the Google Groups "WildFly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wildfly+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wildfly/29ab5f6b-d7db-45b7-b127-a4c9a99aa725n%40googlegroups.com.
Interesting to see that you use the 'state' feature of Galleon CLI.
You could use tab completion with the include-package command to have the list of feature-packs present in your current installation.
I did (inside a directory containing an installation):
include-package wildfly@maven(org.jboss.universe:community-universe)/docs.schema
include-package wildfly-ee@maven(org.jboss.universe:community-universe)/docs.schema
include-package wildfly-ee@maven(org.jboss.universe:community-universe)/docs.contrib
export changed-provisioning.xml
The exported changed-provisioning.xml content:
<installation xmlns="urn:jboss:galleon:provisioning:3.0">
<transitive>
<feature-pack
location="wildfly-ee@maven(org.jboss.universe:community-universe)">
<packages>
<include name="docs.contrib"/>
<include name="docs.schema"/>
</packages>
</feature-pack>
</transitive>
<feature-pack
location="wildfly@maven(org.jboss.universe:community-universe):current#30.0.0.Final">
<default-configs inherit="false"/>
<packages inherit="false">
<include name="docs.schema"/>
</packages>
</feature-pack>
<config model="standalone" name="standalone.xml">
<layers>
<include name="cloud-server"/>
</layers>
</config>
<options>
<option name="optional-packages" value="passive+"/>
</options>
</installation>
To view this discussion on the web visit https://groups.google.com/d/msgid/wildfly/eba812fa-0bde-4e17-a3a7-745ca9f932cen%40googlegroups.com.