Skip to content

Commit

Permalink
Fix CDI related issues (#1)
Browse files Browse the repository at this point in the history
* upgrading to CDI 1.1 avoids plaintext HTTP repository definition
* upgrading to CDI 1.2 replaces old JSR250-api with javax.annotation-api
  • Loading branch information
cstamas authored Sep 12, 2021
1 parent a41ab39 commit b5b0f8c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions org.eclipse.sisu.inject.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,15 @@
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0</version>
<version>1.2</version>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.ejb3</groupId>
<artifactId>jboss-ejb3-api</artifactId>
<artifactId>javax.el-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.interceptor</groupId>
<artifactId>jboss-interceptor-api</artifactId>
<groupId>javax.interceptor</groupId>
<artifactId>javax.interceptor-api</artifactId>
</exclusion>
</exclusions>
</dependency>
Expand Down

0 comments on commit b5b0f8c

Please sign in to comment.