Skip to content

Commit

Permalink
Fix for WFCORE-6656, CLI, shaded jar can't start embedded when loggin…
Browse files Browse the repository at this point in the history
…g json formater configured
  • Loading branch information
jfdenise committed Jan 4, 2024
1 parent 452acf2 commit b3be398
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
16 changes: 4 additions & 12 deletions cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -729,19 +729,11 @@
</exclusions>
</dependency>

<!-- Dependency needed by the CLI fat jar (client classifier) to support JBoss Logging JSON Formatter
that still depends on EE8 javax.json API -->
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.json</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
Expand Down
20 changes: 20 additions & 0 deletions testsuite/shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,26 @@
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-cli</artifactId>
</dependency>
<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-network</artifactId>
Expand Down

0 comments on commit b3be398

Please sign in to comment.