Skip to content

Commit 6ea9c15

Browse files
ci: fix java 7 build
In order to prevent: > Error: Exception in thread "main" java.lang.UnsupportedClassVersionError: com/fasterxml/jackson/databind/ObjectMapper : Unsupported major.minor version 52.0 > at java.lang.ClassLoader.defineClass1(Native Method) > at java.lang.ClassLoader.defineClass(ClassLoader.java:808)
1 parent 6d5d74e commit 6ea9c15

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: .github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
strategy:
14+
fail-fast: false
1415
matrix:
1516
java: [7, 8, 11]
1617

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
<plugin>
185185
<groupId>org.sonatype.plugins</groupId>
186186
<artifactId>nexus-staging-maven-plugin</artifactId>
187-
<version>1.6.13</version>
187+
<version>1.6.7</version>
188188
<extensions>true</extensions>
189189
<configuration>
190190
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)