Skip to content

Commit

Permalink
Build with Java 21 as well. Use latest parent to enable this
Browse files Browse the repository at this point in the history
  • Loading branch information
robtimus committed Oct 22, 2023
1 parent 19db1e4 commit 8d8e697
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [8, 11, 17]
java: [8, 11, 17, 21]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.github.robtimus</groupId>
<artifactId>robtimus-parent</artifactId>
<version>1.9</version>
<version>1.10</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -111,7 +111,7 @@

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-inline</artifactId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ protected final void assertAttributesModified(Path path, Map<String, ?> expected
//expected.forEach((key, value) -> assertThat(modified, hasEntry(key, value)));
}

private static class ExceptionFactoryWrapper implements FileSystemExceptionFactory {
private static final class ExceptionFactoryWrapper implements FileSystemExceptionFactory {

private FileSystemExceptionFactory delegate;

Expand Down

0 comments on commit 8d8e697

Please sign in to comment.