Skip to content

Commit

Permalink
JBPM-9896 - Fix dependency for compilation on JDK 11 to JRE 8 (#3682)
Browse files Browse the repository at this point in the history
* Fix dependency for compilation on JDK 11 to JRE 8

* enforcer fixes
  • Loading branch information
hasys committed Sep 16, 2021
1 parent 6203a47 commit c641c56
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
6 changes: 6 additions & 0 deletions kie-wb-common-dmn/kie-wb-common-dmn-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,12 @@
<groupId>com.google.gwt.gwtmockito</groupId>
<artifactId>gwtmockito</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
10 changes: 10 additions & 0 deletions kie-wb-common-dmn/kie-wb-common-dmn-webapp-standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -767,6 +771,12 @@
<groupId>com.google.gwt.gwtmockito</groupId>
<artifactId>gwtmockito</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.uberfire</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
</properties>

<dependencies>

<!-- Stunner. -->

<dependency>
Expand Down Expand Up @@ -95,8 +94,8 @@
</dependency>

<dependency>
<groupId>org.w3c.css</groupId>
<artifactId>sac</artifactId>
<groupId>org.w3c</groupId>
<artifactId>dom</artifactId>
</dependency>

<!-- Testing scope. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,12 @@
<groupId>com.google.gwt.gwtmockito</groupId>
<artifactId>gwtmockito</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit c641c56

Please sign in to comment.