Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have imported an existing Maven project into Eclipse IDE . I have modified some code in it , it compiled successfully , I am using Java 1.6 as compiler and when i am trying to run maven clean install -X

Its giving the following error

could not parse error message: (use -source 5 or higher to enable generics) D:\bayer\util\src\main\java\com\tata\bayer\util\BrokerageCalendar.java:179: error: generics are not supported in -source 1.3

   private static Hashtable<String, Boolean> nyseHolidays = new Hashtable<String, Boolean>();
                           ^

could not parse error message:   (use -source 5 or higher to enable generics)
D:\bayer\util\src\main\java\com\tata\bayer\util\APIHttpXmlClient.java:27: error: generics are not supported in -source 1.3
                        Class<? extends APIResponse> responseClass) {
                         ^

Please suggest any ideas as how to resolve this ??

share|improve this question
Which version of Maven are you using and have you correctly configured JAVA_HOME – khmarbaise Sep 29 '11 at 13:24

2 Answers

Did you declare that you want to use java 1.6 in your project pom.xml?:

<build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>2.3.2</version>
                    <configuration>
                        <source>1.6</source>
                        <target>1.6</target>
                        <compilerArgument></compilerArgument>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
share|improve this answer
Not the finalName. – khmarbaise Sep 29 '11 at 13:25
@AndreiBodnarescu for you. The finalName is irrelevant for this issue. – Sean Patrick Floyd Sep 29 '11 at 13:27
we did this way, <profile> <id>1.6</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId><configuration> <jdkLevel>1.6</jdkLevel> <source>1.6</source> <target>1.6</target> <compilerArgument>1.6</compilerArgument></configuration</plugin></plugins></buil‌​d> We are using Java 1.7 and maven as Apache Maven 2.2.1 (r801777; 2009-08-07 00:46:01+0530) Java home: c:\Softwares\Java\jdk1.7.0\jre – Sonam Farzana Sep 29 '11 at 14:19
That worked for me. Thanks! – Kevin Apr 10 at 17:47

You have to configure the Maven Compiler Plugin.

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.3</version>
  <configuration>
    <source>1.6</source>
    <target>1.6</target>
  </configuration>
</plugin>
share|improve this answer
it's worth noting that the default is 1.5 for compiler plugin >= 2.3. Maven 2.2.1 defaults to compiler plugin 2.0.2 but you can override it as described. – Brett Porter Sep 30 '11 at 0:36
2  
(by the way, there is a typo in the version of the example, but you can't make 1-character edits on stackoverflow :) – Brett Porter Sep 30 '11 at 0:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.