Skip to content

Commit

Permalink
Upgrade maven-surefire-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
theigl committed Mar 28, 2023
1 parent aa58124 commit 9ef6650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Expand Up @@ -144,7 +144,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<version>3.0.0</version>
</plugin>

<plugin>
Expand Down Expand Up @@ -385,7 +385,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<excludes>
<exclude>**/java11/*Test.java</exclude>
Expand Down
Expand Up @@ -149,7 +149,7 @@ public void read (Input input, Object object) {
}

Class resolveFieldClass () {
if (valueClass == null) {
if (valueClass == null && !field.getType().isArray()) {
Class fieldClass = genericType.resolve(fieldSerializer.kryo.getGenerics());
if (fieldClass != null && fieldSerializer.kryo.isFinal(fieldClass)) return fieldClass;
}
Expand Down

0 comments on commit 9ef6650

Please sign in to comment.