[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.iam] Re: Installation Failure

It seems that an exclusion in a denpendency is not well managed so the excluded artifact seems to be added to "Maven Classpath Container"
So I changed my pom to avoid this problem but now another problems occurs. Lots of errors "the type ... is not generic". It ssems that the project has switch in 1.4 java style.


I have checked that my project in Eclipse is 1.6 and in my pom :
			<plugin>
			    <groupId>org.apache.maven.plugins</groupId>
			    <artifactId>maven-compiler-plugin</artifactId>
			    <configuration>
			        <source>1.6</source>
			        <target>1.6</target>
			    </configuration>
			</plugin>

Any idea, please ?