Skip to content

Commit

Permalink
Minimal requirement is now Java8
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Nov 16, 2020
1 parent 9e0baa7 commit 83251dd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions org.wikipathways.client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,15 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 83251dd

Please sign in to comment.