Skip to content

Commit 72052d6

Browse files
authored
Merge pull request #171 from ipfs-shipyard/fix/mvn-java-version
tell maven to use java 11
2 parents 57269c7 + ede81bf commit 72052d6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,11 @@
6969
<plugin>
7070
<groupId>org.apache.maven.plugins</groupId>
7171
<artifactId>maven-compiler-plugin</artifactId>
72-
<version>3.1</version>
72+
<version>3.8.0</version>
7373
<configuration>
74-
<source>1.8</source>
75-
<target>1.8</target>
74+
<release>11</release>
75+
<source>11</source>
76+
<target>11</target>
7677
</configuration>
7778
</plugin>
7879
<plugin>

0 commit comments

Comments
 (0)