Skip to content

Commit

Permalink
Support build on OpenJDK 11 (#71)
Browse files Browse the repository at this point in the history
Closes #70
  • Loading branch information
andreoss authored Jun 20, 2020
1 parent 93a997a commit f45ce19
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<scala.major.version>2.11</scala.major.version>
<scala.minor.version>7</scala.minor.version>
<scala.minor.version>12</scala.minor.version>
<scala.version>${scala.major.version}.${scala.minor.version}</scala.version>
<scalatest.version>3.0.1</scalatest.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -30,8 +30,8 @@
<maven.core.version>3.3.9</maven.core.version>
<junit.version>4.12</junit.version>
<maven.reporting.api.version>3.0</maven.reporting.api.version>
<scala.maven.plugin.version>3.2.2</scala.maven.plugin.version>
<maven.enforcer.plugin.version>1.4.1</maven.enforcer.plugin.version>
<java.version>6</java.version>
</properties>

<licenses>
Expand Down Expand Up @@ -141,7 +141,7 @@
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>${scala.maven.plugin.version}</version>
<version>4.3.0</version>
<configuration>
<recompileMode>incremental</recompileMode>
<scalaVersion>${scala.version}</scalaVersion>
Expand All @@ -158,10 +158,10 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.8.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<source>1.${java.version}</source>
<target>1.${java.version}</target>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -278,7 +278,7 @@
<docencoding>UTF-8</docencoding>
<docfilessubdirs>true</docfilessubdirs>
<show>package</show>
<source>1.5</source>
<source>1.${java.version}</source>
<detectLinks>true</detectLinks>
</configuration>
</plugin>
Expand Down

0 comments on commit f45ce19

Please sign in to comment.