Skip to content

Commit

Permalink
Updated to JUnit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasSchaub committed Nov 2, 2023
1 parent 7450a8a commit 82fb622
Show file tree
Hide file tree
Showing 3 changed files with 142 additions and 114 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ care of installing all dependencies.
**Needs to be pre-installed:**
* Java Development Kit (JDK) version 17
* [Adoptium OpenJDK](https://adoptium.net) (as one possible source of the JDK)
* Eclipse Public License v2.0
* Apache Maven version 4
* [Apache Maven](https://maven.apache.org/download.cgi#alpha-4-x-release)
* Apache License, version 2.0
Expand All @@ -165,9 +166,9 @@ care of installing all dependencies.
* Chemistry Development Kit (CDK) version 2.9
* [Chemistry Development Kit on GitHub](https://cdk.github.io/)
* License: GNU Lesser General Public License 2.1
* JUnit version 4.13.2
* [JUnit 4](https://junit.org/junit4/)
* License: Eclipse Public License 1.0
* JUnit version 5.10.0
* [JUnit 5](https://junit.org/junit5/)
* License: Eclipse Public License v2.0
* Apache Commons CLI version 1.4
* [Apache Commons CLI](https://commons.apache.org/proper/commons-cli/)
* Apache License, version 2.0
Expand Down
33 changes: 30 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
<project.build.target>17</project.build.target>
<java.version>17</java.version>
<cdk.version>2.9</cdk.version>
<junit.version>5.10.0</junit.version>
<hamcrest.version>2.2</hamcrest.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -90,9 +92,34 @@
<version>1.4</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
<version>${junit.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<scope>test</scope>
<version>${hamcrest.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
<version>${hamcrest.version}</version>
</dependency>
</dependencies>

Expand Down
Loading

0 comments on commit 82fb622

Please sign in to comment.