Skip to content

Commit

Permalink
[TEXT-187] add graalvm dependencies in test scope (#171)
Browse files Browse the repository at this point in the history
* [TEXT-187]: add graalvm dependencies in test scope

* [TEXT-187]: use a property for graalvm version

* [TEXT-187]: add changelog
  • Loading branch information
kinow committed Sep 30, 2020
1 parent a526cc1 commit c9f369b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@

<commons.javadoc.version>3.2.0</commons.javadoc.version>

<graalvm.version>20.2.0</graalvm.version>

<!-- generate report even if there are binary incompatible changes -->
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>true</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
<commons.japicmp.version>0.14.3</commons.japicmp.version>
Expand Down Expand Up @@ -105,6 +107,18 @@
<version>${commons.mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js</artifactId>
<version>${graalvm.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-scriptengine</artifactId>
<version>${graalvm.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
1 change: 1 addition & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ The <action> type attribute can be add,update,fix,remove.
</properties>
<body>
<release version="1.9.1" date="202Y-MM-DD" description="Release 1.9.1. Requires Java 8.">
<action issue="TEXT-187" type="fix" dev="kinow">Add GraalVM test dependencies to fix test failures with Java 15.</action>
<action type="update" dev="kinow" due-to="Dependabot">Bump junit-jupiter from 5.6.2 to 5.7.0 #163.</action>
<action type="update" dev="kinow" due-to="Dependabot">Bump assertj-core from 3.16.1 to 3.17.2 #151 #157 #160.</action>
<action type="update" dev="kinow" due-to="Dependabot">Bump commons-io from 2.7 to 2.8.0 #161.</action>
Expand Down

0 comments on commit c9f369b

Please sign in to comment.