Skip to content

Commit

Permalink
Merge pull request #17051 from bstansberry/WFLY-18296_29x
Browse files Browse the repository at this point in the history
[WFLY-18296] Remove the org.jboss.jts dependency on jdk.console
  • Loading branch information
pferraro committed Aug 23, 2023
2 parents 7305e04 + c40fee8 commit b6febff
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<module name="java.xml"/>
<module name="jakarta.activation.api"/>
<module name="jakarta.xml.bind.api"/>
<module name="jdk.compiler"/>
<module name="jdk.compiler" optional="true"/>
</dependencies>

</module>
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,20 @@
<module name="java.transaction.xa"/>
<module name="java.xml"/>
<module name="jakarta.transaction.api"/>
<!--
The jdk.console module is a compile dependency of narayana-jts-idlj
but is not a runtime one within WildFly. It's listed here with
this comment to prevent it being re-added as a dependency
without discussion.
Narayana has a 'TxPerfPlugin' JConsolePlugin implementation but
WildFly does not support running JConsole as a modular application.
WildFly should not have dependencies on JDK modules that are not
associated with the traditional 'JRE' concept.
<module name="jdk.jconsole"/>
-->
<module name="org.omg.api" />
<module name="org.jboss.logging"/>
<module name="org.jboss.jts.integration"/>
Expand Down

0 comments on commit b6febff

Please sign in to comment.