Skip to content

Commit

Permalink
deps: update IT deps in case it helps JDK21 build pass (#192)
Browse files Browse the repository at this point in the history
* deps: update IT deps in case it helps JDK21 build pass

* and broaden manual acceptance matrix
  • Loading branch information
berezovskyi authored Dec 9, 2023
1 parent 231f44d commit 8712b8a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/maven-acceptance-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,16 @@ jobs:
strategy:
fail-fast: false
matrix:
# jdk: ['11']
# distribution: ['temurin', 'corretto', 'microsoft', 'adopt-openj9', 'zulu']
# experimental: [false]
jdk: ['17']
distribution: ['temurin', 'corretto', 'microsoft', 'adopt-openj9', 'zulu']
experimental: [false]
include:
- jdk: '17'
- jdk: '21'
distribution: 'temurin'
experimental: false
# - jdk: '17'
# distribution: 'temurin'
# experimental: false
# - jdk: '19'
# distribution: 'zulu'
# experimental: true
- jdk: '22-ea'
distribution: 'zulu'
experimental: true
continue-on-error: ${{ matrix.experimental }}

steps:
Expand Down
16 changes: 8 additions & 8 deletions src/refimpl-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<groovy.version>4.0.5</groovy.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<groovy.version>4.0.16</groovy.version>
</properties>

<build>
Expand All @@ -26,7 +26,7 @@
visit https://github.com/groovy/GMavenPlus/wiki -->
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.13.1</version>
<version>3.0.2</version>
<executions>
<execution>
<goals>
Expand All @@ -40,7 +40,7 @@
<!-- Only required if names of spec classes don't match default Surefire patterns (`*Test` etc.) -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<version>3.2.2</version>
<configuration>
<useModulePath>false</useModulePath> <!-- https://issues.apache.org/jira/browse/SUREFIRE-1809 -->
<useFile>false</useFile>
Expand Down Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>spock</artifactId>
<version>1.18.1</version>
<version>1.19.3</version>
<scope>test</scope>
</dependency>
<!-- Mandatory dependencies for using Spock -->
Expand All @@ -100,13 +100,13 @@
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.11.0</version>
<version>1.14.10</version>
<scope>test</scope>
</dependency>
<dependency> <!-- enables mocking of classes without default constructor (together with ByteBuddy or CGLIB) -->
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>3.2</version>
<version>3.3</version>
<scope>test</scope>
</dependency>
<dependency> <!-- only required if Hamcrest matchers are used -->
Expand Down

0 comments on commit 8712b8a

Please sign in to comment.