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
10 changes: 5 additions & 5 deletions docs/cucumber/state.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,14 @@ testImplementation("io.cucumber:cucumber-jakarta-openejb:{{% version "cucumberjv

There is no documentation yet, but the code is on [GitHub](https://github.com/cucumber/cucumber-jvm/tree/main/cucumber-jakarta-openejb).

### Weld
### CDI

To use Weld, add the following dependency to your `pom.xml`:
To use CDI, add the following dependency to your `pom.xml`:

```xml
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-weld</artifactId>
<artifactId>cucumber-jakarta-cdi</artifactId>
<version>{{% version "cucumberjvm" %}}</version>
<scope>test</scope>
</dependency>
Expand All @@ -249,10 +249,10 @@ To use Weld, add the following dependency to your `pom.xml`:
Or, if you are using Gradle, add:

```kotlin
testImplementation("io.cucumber:cucumber-weld:{{% version "cucumberjvm" %}}")
testImplementation("io.cucumber:cucumber-jakarta-cdi:{{% version "cucumberjvm" %}}")
```

There is no documentation yet, but the code is on [GitHub](https://github.com/cucumber/cucumber-jvm/tree/main/cucumber-weld).
There is no documentation yet, but the code is on [GitHub](https://github.com/cucumber/cucumber-jvm/tree/main/cucumber-jakarta-cdi).

### Needle

Expand Down