Skip to content

Commit

Permalink
Merge pull request quarkusio#24451 from gsmet/ban-jboss-javax-el
Browse files Browse the repository at this point in the history
Ban org.jboss.spec.javax.el:jboss-el-api_3.0_spec
  • Loading branch information
gsmet authored Mar 21, 2022
2 parents 5bad76e + cfba382 commit 93b93d1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@
<exclude>org.jboss.spec.javax.security.auth.message:jboss-jaspi-api_1.1_spec</exclude>
<exclude>org.jboss.spec.javax.websocket:jboss-websocket-api_1.1_spec</exclude>
<exclude>org.jboss.spec.javax.interceptor:jboss-interceptors-api_1.2_spec</exclude>
<exclude>org.jboss.spec.javax.el:jboss-el-api_3.0_spec</exclude>
<!-- except for these 2 for now as most of the RESTEasy optional artifacts depend on them
<exclude>org.jboss.spec.javax.ws.rs:jboss-jaxrs-api_2.1_spec</exclude>
<exclude>org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec</exclude>
Expand Down
10 changes: 10 additions & 0 deletions extensions/resteasy-classic/resteasy-links/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-links</artifactId>
<exclusions>
<!--
jakarta.el:jakara.el-api is coming from CDI
we don't add it as a dependency to avoid having to define a version in the BOM
-->
<exclusion>
<groupId>org.jboss.spec.javax.el</groupId>
<artifactId>jboss-el-api_3.0_spec</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit 93b93d1

Please sign in to comment.