Skip to content

Commit

Permalink
Merge pull request #331 from emmartins/CMTOOL-384
Browse files Browse the repository at this point in the history
[CMTOOL-384] Fixes namespaces for distributable-* subsystems
  • Loading branch information
emmartins authored Jan 10, 2025
2 parents c163a03 + 95e2c65 commit dfd97ee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ public interface JBossExtensions {

Extension CLUSTERING_EJB = Extension.builder()
.module(JBossExtensionNames.CLUSTERING_EJB)
.subsystem(Subsystem.builder().name(JBossSubsystemNames.DISTRIBUTABLE_EJB).namespaceWithoutVersion("urn:wildfly:"+JBossSubsystemNames.DISTRIBUTABLE_EJB))
.subsystem(JBossSubsystemNames.DISTRIBUTABLE_EJB)
.build();

Extension CLUSTERING_WEB = Extension.builder()
.module(JBossExtensionNames.CLUSTERING_WEB)
.subsystem(Subsystem.builder().name(JBossSubsystemNames.DISTRIBUTABLE_WEB).namespaceWithoutVersion("urn:wildfly:"+JBossSubsystemNames.DISTRIBUTABLE_WEB))
.subsystem(JBossSubsystemNames.DISTRIBUTABLE_WEB)
.build();

Extension CMP = Extension.builder()
Expand Down

0 comments on commit dfd97ee

Please sign in to comment.