Waoh, good job. Your special configuration gave me a lot of ideas (Especially <dependencies> section in plugin configuration)
Thanks Damien Lecan -------- Message d'origine-------- De: Nicolas De Loof [mailto:[EMAIL PROTECTED] Date: jeu. 07/09/2006 17:33 À: Maven Users List Objet : [solved] product codes at java 1.4, test sources at java 1.5 Here is my POM : <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.3</source> <target>1.3</target> <compilerArguments> <bootclasspath> ${settings.localRepository}/com/sun/rt/1.3.1_08/rt-1.3.1_08.jar </bootclasspath> </compilerArguments> </configuration> <executions> <execution> <id>compile-tests</id> <phase>process-test-sources</phase> <goals> <goal>testCompile</goal> </goals> <configuration> <source>1.5</source> <target>1.5</target> <compilerArguments> <bootclasspath> ${java.home}/lib/rt.jar </bootclasspath> </compilerArguments> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>rt</artifactId> <version>1.3.1_08</version> </dependency> </dependencies> </plugin> Nico.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
