Skip to content

Commit

Permalink
release 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cschabl committed Apr 30, 2020
1 parent 4a93737 commit d54334c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ Add the cdi-unit-junit5 dependency:
<dependency>
<groupId>com.github.cschabl.cdi-unit-junit5</groupId>
<artifactId>cdi-unit-junit5</artifactId>
<version>0.3</version>
<version>0.4</version>
<scope>test</scope>
</dependency>
```

Make sure you've added the CDI-Unit dependency and the prefered Weld SE dependency:
Make sure you've added the CDI-Unit dependency and the preferred Weld SE dependency:

```xml
<dependency>
Expand Down Expand Up @@ -69,7 +69,7 @@ And the JUnit 5 dependencies:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>$${junit5-version}</version>
<version>${junit5-version}</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -78,7 +78,7 @@ And the JUnit 5 dependencies:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>$${junit5-version}</version>
<version>${junit5-version}</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -94,7 +94,7 @@ dependencies {
testImplementation "org.jglue.cdi-unit:cdi-unit:${cdi-unit-version}"
testImplementation "org.jboss.weld.se:weld-se-core:${weld-version}"
testImplementation "com.github.cschabl.cdi-unit-junit5:cdi-unit-junit5:0.3"
testImplementation "com.github.cschabl.cdi-unit-junit5:cdi-unit-junit5:0.4"
...
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.cschabl.cdi-unit-junit5</groupId>
<artifactId>cdi-unit-junit5</artifactId>
<version>0.4-SNAPSHOT</version>
<version>0.4</version>
<name>CDI-Unit-JUnit-Extension</name>
<description>JUnit 5 extension for running CDI-Unit tests</description>
<url>https://github.com/cschabl/cdi-unit-junit5</url>
Expand Down

0 comments on commit d54334c

Please sign in to comment.