Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] Java8-ea

I'm developing for JavaFX8, so I'm using Java8-ea SDK (currently b120).
Recently I started using lambda (rationale was: since I'm using JavaFX8 anyways I can take vantage in the good things of Java8 also).
I had to change, in my parent pom:

                <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                    <configuration>
                        <source>8</source>
                        <target>8</target>
                    </configuration>
                </plugin>

This works as expected.
Problem is: when I ran "Maven -> Update Project..." eclipse "Preferences -> Java Compiler  JDK Compliance" was reset to 1.4 on "project specific settings", while, obviously, "Workspace settings -> Java -> Compiler -> Compiler compliance level" remained at "1.8 (BETA)".

What did I do wrong?

I'm using:
  e(fx)clipse - IDE - Kepler 0.9.0.20131211080
  e(fx)clipse addons - Tooling - RoboVM Integration 0.9.0.201311150203
  Eclipse e4 Tools (Incubation) 0.14.0.v20130620-0935
  Eclipse Git Team Provider 3.0.3.201309161630-r
  Eclipse Java Development Tools Patch for Java 8 Support (BETA)                           1.0.0.v20131115-0111_BETA_JAVA8
  Eclipse Plugin-in Development Environment Patch for Java 8 Support (BETA)    1.0.0.v20131115-0111_BETA_JAVA8
  Eclipse RCP Patch for Java 8 Support (BETA) 1.0.0.v20131115-0111_BETA_JAVA8
  Eclipse SDK 4.3.1.M20130911-1000
  Eclipse XML Editors and Tools 3.5.1.v201307171524-7H7IFiwDxumVt0J7gijShVTqs4BePbKwUtS9PL
  EMF - Eclipse Modeling Framework SDK 2.9.2.v20131212-0558
  m2e - Maven Integration for Eclipse 1.4.0.20130601-0317
MercurialEclipse 2.0.0.v201210091230
  MWE 2 language SDK 2.5.0.v201312110944
  MWE 2 runtime SDK 2.5.0.v201312110307
  Subclipse (Required) 1.8.20
  Subversion Client Adapter (Required) 1.8.4
  SVNKit Client Adapter (Not required) 1.7.9.1
  Windows Binaries for Mercurial (Recommended) 2.3.2.v201210212000
  Xtext SDK 2.5.0.v201312110906

TiA
Mauro


Back to the top