Skip to content

Commit

Permalink
Exclude the SISU dependency from our quarkus-junit artifact
Browse files Browse the repository at this point in the history
It is a CDI implementation and we really don't want it when running our
tests.

It also can generate unwanted files in the case of the Kogito extension
(see #2879 and #2889).
  • Loading branch information
gsmet committed Jun 26, 2019
1 parent 227c8dd commit 6f02e9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,3 @@ docker/distroless/bazel-*
/.apt_generated_tests/
quarkus.log
replay_*.log

# Temporary
integration-tests/kogito/javax.inject.Named
6 changes: 6 additions & 0 deletions test-framework/junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bootstrap-core</artifactId>
<exclusions>
<exclusion>
<groupId>org.eclipse.sisu</groupId>
<artifactId>org.eclipse.sisu.inject</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down

0 comments on commit 6f02e9d

Please sign in to comment.