Test build on JDK 13 (#62)
* Test build on JDK 13 * Don’t use wildcard static import with AssertJ * Unpin pitest-junit5-plugin * Update changelog
This commit is contained in:
parent
3cb432a3ab
commit
c7f4723e5b
5 changed files with 8 additions and 5 deletions
2
.github/workflows/maven-build.yml
vendored
2
.github/workflows/maven-build.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java: [ 8, 11 ]
|
java: [ 8, 11, 13 ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up JDK ${{ matrix.java }}
|
- name: Set up JDK ${{ matrix.java }}
|
||||||
|
|
|
@ -10,11 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
** Added
|
** Added
|
||||||
|
|
||||||
- Add kemitix-maven-tiles 2.4.1
|
- Add kemitix-maven-tiles 2.4.1
|
||||||
|
- Tests run against JDK 8, 11 and 13 (#62)
|
||||||
|
|
||||||
** Changed
|
** Changed
|
||||||
|
|
||||||
- Moved: Node.drawTree to Nodes (#60)
|
- Moved: Node.drawTree to Nodes (#60)
|
||||||
- Pinned pitest-junit5-plugin at 0.9 (#59)
|
|
||||||
- Replace Jenkins with Github Actions (#57)
|
- Replace Jenkins with Github Actions (#57)
|
||||||
- [checkstyle] suppress npath complexity issues
|
- [checkstyle] suppress npath complexity issues
|
||||||
- [coverage] lower requirements
|
- [coverage] lower requirements
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -21,7 +21,6 @@
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<tiles-maven-plugin.version>2.16</tiles-maven-plugin.version>
|
<tiles-maven-plugin.version>2.16</tiles-maven-plugin.version>
|
||||||
<kemitix-maven-tiles.version>2.4.1</kemitix-maven-tiles.version>
|
<kemitix-maven-tiles.version>2.4.1</kemitix-maven-tiles.version>
|
||||||
<pitest-junit5-plugin.version>0.9</pitest-junit5-plugin.version>
|
|
||||||
<kemitix-checkstyle.version>5.4.0</kemitix-checkstyle.version>
|
<kemitix-checkstyle.version>5.4.0</kemitix-checkstyle.version>
|
||||||
<lombok.version>1.18.12</lombok.version>
|
<lombok.version>1.18.12</lombok.version>
|
||||||
<assertj.version>3.15.0</assertj.version>
|
<assertj.version>3.15.0</assertj.version>
|
||||||
|
|
|
@ -12,7 +12,9 @@ import java.util.Optional;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.util.stream.Stream;
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.*;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatNullPointerException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for {@link ImmutableNodeItem}.
|
* Test for {@link ImmutableNodeItem}.
|
||||||
|
|
|
@ -12,7 +12,9 @@ import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import static org.assertj.core.api.Assertions.*;
|
import static org.assertj.core.api.Assertions.assertThat;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
|
||||||
|
import static org.assertj.core.api.Assertions.assertThatNullPointerException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test for {@link NodeItem}.
|
* Test for {@link NodeItem}.
|
||||||
|
|
Loading…
Reference in a new issue