Skip to content

Commit

Permalink
[CMTOOL-384] Fixes namespaces for distributable-* subsystems
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Jan 10, 2025
1 parent c163a03 commit 95e2c65
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 95e2c65

Please sign in to comment.