Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,15 @@ under the License.
<groupId>org.checkerframework</groupId>
<artifactId>checker</artifactId>
</exclusion>
<!-- BDB JE only references javax.resource in its optional JCA resource
adapter (com.sleepycat.je.jca.ra), which embedded FE never uses.
javax.resource:connector:1.0 has no jar in Maven Central (only a pom)
and its historical host (repo.grails.org) is unreliable, so pulling it
breaks the build in many environments. Exclude it. -->
<exclusion>
<groupId>javax.resource</groupId>
<artifactId>connector</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jmockit/jmockit -->
Expand Down
Loading