You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Edgar Espina (JIRA)" <ji...@codehaus.org> on 2014/07/24 18:40:10 UTC

[jira] (MECLIPSE-753) Add support for named parameters

Edgar Espina created MECLIPSE-753:
-------------------------------------

             Summary: Add support for named parameters
                 Key: MECLIPSE-753
                 URL: https://jira.codehaus.org/browse/MECLIPSE-753
             Project: Maven Eclipse Plugin
          Issue Type: New Feature
          Components: Core : Workspace settings
    Affects Versions: 2.9
            Reporter: Edgar Espina


With Java 8 out, compiler is able to include parameter names in class files. 

Eclipse Java 8 Support has a new option: * Store information about method parameters (org.eclipse.jdt.core.compiler.codegen.methodParameters=generate)

It will be great if the maven-eclipse-plugin is able to generate that option for Eclipse IDE.

Ideally, it should read the setup of maven-compiler-plugin:
   <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>${maven-compiler-plugin.version}</version>
        <configuration>
          <source>${java.source.version}</source>
          <target>${java.source.version}</target>
          <compilerArgs>
            <arg>-parameters</arg>
          </compilerArgs>
        </configuration>
      </plugin>

Thanks in advance



--
This message was sent by Atlassian JIRA
(v6.1.6#6162)