[
https://issues.apache.org/jira/browse/FLINK-13896?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16918585#comment-16918585
]
Timo Walther commented on FLINK-13896:
--------------------------------------
Hi [~Terry1897], the environment field is rather used for hardware/OS
information. Please move the content to the issue description. Would you like
to work on a fix for this?
> Scala 2.11 maven compile should target Java 1.8
> -----------------------------------------------
>
> Key: FLINK-13896
> URL: https://issues.apache.org/jira/browse/FLINK-13896
> Project: Flink
> Issue Type: Bug
> Components: Build System
> Affects Versions: 1.9.0
> Environment: When setting TableEnvironment in scala as follwing:
>
> {code:java}
> // we can repoduce this problem by put following code in
> // org.apache.flink.table.api.scala.internal.StreamTableEnvironmentImplTest
> @Test
> def testCreateEnvironment(): Unit = {
> val settings =
> EnvironmentSettings.newInstance().useBlinkPlanner().inBatchMode().build();
> val tEnv = TableEnvironment.create(settings);
> }
> {code}
> Then mvn test would fail with an error message like:
>
> error: Static methods in interface require -target:JVM-1.8
>
> We can fix this bug by adding:
> <configuration>
> <args>
> <arg>-target:jvm-1.8</arg>
> </args>
> </configuration>
>
> to scala-maven-plugin
>
>
>
> Reporter: Terry Wang
> Priority: Major
>
--
This message was sent by Atlassian Jira
(v8.3.2#803003)