Hi, thanks for the effort! I needed to add the following plugin to the maven pom.xml in order to execute the mvn build: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> <optimize>true</optimize> </configuration> </plugin> otherwise the following errors appear: [ERROR](use -source 5 or higher to enable generics) for generics and for-each loops... Thanks again!
Hi,
thanks for the effort!
I needed to add the following plugin to the maven pom.xml in order to execute the mvn build:
org.apache.maven.plugins maven-compiler-plugin 2.3.2otherwise the following errors appear:
[ERROR](use -source 5 or higher to enable generics)
for generics and for-each loops...
Thanks again!