Skip to content

Commit

Permalink
Fix CDI API (#66)
Browse files Browse the repository at this point in the history
Have it aligned with Java 8
  • Loading branch information
cstamas authored May 3, 2024
1 parent e451d6c commit 47308a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,14 @@
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>1.0</version>
<version>2.0</version>
<exclusions>
<!-- We need only javax.enterprise.inject.Typed -->
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down

0 comments on commit 47308a2

Please sign in to comment.