Skip to content

Commit

Permalink
Merge pull request #93 from g4s8/utest
Browse files Browse the repository at this point in the history
Updated unit testing dependencies
  • Loading branch information
yegor256 authored Feb 5, 2020
2 parents ec82536 + a29e674 commit c4619a7
Showing 1 changed file with 14 additions and 23 deletions.
37 changes: 14 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<junit-platform.version>5.4.2</junit-platform.version>
</properties>
<repositories>
<!--
Expand Down Expand Up @@ -940,18 +941,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
</activation>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -1431,33 +1432,23 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
in the market. Other options considered: TestNG.
@link http://www.junit.org/
-->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-platform.version}</version>
</dependency>
<dependency>
<!--
Assertions and matchers for unit tests.
@link http://code.google.com/p/hamcrest/wiki/Tutorial
-->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-platform.version}</version>
</dependency>
<dependency>
<!--
Assertions and matchers for unit tests.
@link http://code.google.com/p/hamcrest/wiki/Tutorial
-->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<artifactId>hamcrest</artifactId>
<version>2.1</version>
</dependency>
<dependency>
<!--
Expand Down

0 comments on commit c4619a7

Please sign in to comment.