Skip to content

Commit

Permalink
Fix minimum Java version to 1.8 for Feast Java
Browse files Browse the repository at this point in the history
Signed-off-by: Danny Chiao <[email protected]>
  • Loading branch information
adchia committed Feb 16, 2022
1 parent 595a35d commit e56c281
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions java/datatypes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
definitions included in the package.
</description>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<artifactId>feast-datatypes</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
<version>[3.6,4.0)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[8.0,)</version>
<version>[1.8.0,)</version>
</requireJavaVersion>
<reactorModuleConvergence />
</rules>
Expand Down

0 comments on commit e56c281

Please sign in to comment.