Skip to content

Commit

Permalink
Update the CDI versions to be consistent with EE 10 (#3)
Browse files Browse the repository at this point in the history
Signed-off-by: Scott M Stark <[email protected]>
  • Loading branch information
starksm64 authored Nov 18, 2023
1 parent 0c98fdc commit bff1538
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions testenrichers/cdi-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<!-- Properties -->
<properties>
<!-- Versioning -->
<version.weld-core>4.0.3.Final</version.weld-core>
<version.jakarta.cdi-api>3.0.0</version.jakarta.cdi-api>
<version.javax-el>2.2</version.javax-el>
<version.weld-core>5.1.2.Final</version.weld-core>
<version.jakarta.cdi-api>4.0.1</version.jakarta.cdi-api>
<version.jakarta.el-api>4.0.0</version.jakarta.el-api>
</properties>

<!-- Dependencies -->
Expand All @@ -46,6 +46,12 @@
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>${version.jakarta.cdi-api}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- test -->
Expand Down Expand Up @@ -99,9 +105,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${version.javax-el}</version>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
<version>${version.jakarta.el-api}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bff1538

Please sign in to comment.