Skip to content

Commit

Permalink
Updated Java version requirement from 8 to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Jun 24, 2024
1 parent 53b314d commit 70cb279
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Java Class Model API for Predictive Model Markup Language (PMML).

# Prerequisites #

* Java 1.8 or newer.
* Java 11 or newer.

# Installation #

Expand Down
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
Expand All @@ -223,8 +223,11 @@
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[11,)</version>
</requireJavaVersion>
<requireMavenVersion>
<version>3.6.3</version>
<version>[3.6.3,)</version>
</requireMavenVersion>
</rules>
</configuration>
Expand Down

0 comments on commit 70cb279

Please sign in to comment.