Skip to content

Commit

Permalink
[WFCORE-5101] Add version 18 with COMMUNITY stability level of the Wi…
Browse files Browse the repository at this point in the history
…ldFly Elytron model and schema
  • Loading branch information
Skyllarr committed Mar 20, 2024
1 parent 38d4375 commit db578c0
Show file tree
Hide file tree
Showing 5 changed files with 6,805 additions and 1 deletion.
Expand Up @@ -34,6 +34,7 @@
<module name="org.jboss.staxmapper"/>
<module name="org.jboss.as.controller"/>
<module name="org.jboss.as.server"/>
<module name="org.jboss.as.version"/>
<module name="org.jboss.modules"/>
<module name="org.jboss.msc"/>
<module name="org.jboss.logging"/>
Expand Down
1 change: 1 addition & 0 deletions elytron/pom.xml
Expand Up @@ -373,6 +373,7 @@
<exclude>custom-policies.xml</exclude>
<exclude>jacc-with-providers.xml</exclude>
<exclude>legacy*.xml</exclude>
<exclude>elytron-subsystem-community*.xml</exclude>
</excludes>
<systemId>src/main/resources/schema/wildfly-elytron_18_0.xsd</systemId>
</validationSet>
Expand Down
Expand Up @@ -52,8 +52,9 @@ public enum ElytronSubsystemSchema implements PersistentSubsystemSchema<ElytronS
VERSION_16_0(16),
VERSION_17_0(17),
VERSION_18_0(18),
VERSION_18_0_COMMUNITY(18, Stability.COMMUNITY),
;
static final Map<Stability, ElytronSubsystemSchema> CURRENT = Feature.map(EnumSet.of(VERSION_18_0));
static final Map<Stability, ElytronSubsystemSchema> CURRENT = Feature.map(EnumSet.of(VERSION_18_0, VERSION_18_0_COMMUNITY));

private final VersionedNamespace<IntVersion, ElytronSubsystemSchema> namespace;

Expand Down

0 comments on commit db578c0

Please sign in to comment.