Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maven project Error: Diamond/multicatch operator not supported in -source 1.5 [duplicate]

I can't build my maven java web application, because of the following two errors:

diamond operator is not supported in -source 1.5
  (use -source 7 or higher to enable diamond operator)

multi-catch statement is not supported in -source 1.5
  (use -source 7 or higher to enable multi-catch statement)

I'm confused, because i use java 1.8.0 for my project, i never have actually used 1.5

enter image description here

enter image description here

What could be causing this problem and how do i solve it?

I tried to build it after adding the follwing lines in the pom.xml, but without succes:

 <properties>
        <sourceJdk>1.8</sourceJdk>
        <targetJdk>1.8</targetJdk>
 </properties>
like image 213
MeesterPatat Avatar asked Sep 18 '14 12:09

MeesterPatat


2 Answers

Try declaring the maven-compiler-plugin in your pom.

           <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
like image 133
ssedano Avatar answered Oct 04 '22 15:10

ssedano


You can also add it in this way as well by including this in your pom.xml

 <properties>
   <maven.compiler.source>1.7</maven.compiler.source>
   <maven.compiler.target>1.7</maven.compiler.target>
</properties>
like image 44
atom88 Avatar answered Oct 04 '22 14:10

atom88