Maven probleme de version ?

Maven probleme de version ? - Java - Programmation

Marsh Posté le 15-04-2010 à 11:44:45    

Bonjour,
 
 
J'utilise maven pour la première fois sur un projet déjà existant. Pour le moment la configuration est simple mais j'ai un probleme avec les mots cles de java 1.6.
 

Citation :

/home/attonjo/marillion/statweb-gene/src/main/java/com/e_i/stats/statsweb/VisitsByHost.java:[37,15] for-each loops are not supported in -source 1.3
(use -source 5 or higher to enable for-each loops)
  for (Visit v : mVisits) {
 
/home/attonjo/marillion/statweb-gene/src/main/java/com/e_i/stats/statsweb/Page.java:[19,39] generics are not supported in -source 1.3
(use -source 5 or higher to enable generics)
public class Page implements Comparable<Page> ,Serializable {


 
D'après ce que j'ai pu voir c'est parce que maven n'est pas compatible avec java 1.6 :/ Ce n'est vraiment pas possible de s'en sortir ? Ça me semble bizarre comme limitation.
 

Citation :

java -version
java version "1.6.0_0"
OpenJDK Runtime Environment (IcedTea6 1.6.1) (6b16-1.6.1-3ubuntu3)
OpenJDK Client VM (build 14.0-b16, mixed mode, sharing)


 
Voila je bloque là. Je pourrait ne pas utiliser maven pour mon projet mais ça m'intéresse donc ... :)

Reply

Marsh Posté le 15-04-2010 à 11:44:45   

Reply

Marsh Posté le 15-04-2010 à 12:18:47    

Ajoute
 

Code :
  1. <plugin>
  2.    <groupId>org.apache.maven.plugins</groupId>
  3.    <artifactId>maven-compiler-plugin</artifactId>
  4.    <version>2.2</version>
  5.    <configuration>
  6.     <source>1.6</source>
  7.     <target>1.6</target>
  8.    </configuration>
  9.   </plugin>


 
dans ton POM.

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed