From: Martin W. <ama...@us...> - 2006-07-19 16:15:52
|
User: amartinwest Date: 06/07/19 08:14:32 Modified: . pom.xml Log: Add source/target 1.4 since CC switched to jdk 1.5 Revision Changes Path 1.11 +9 -0 plugins/pom.xml Index: pom.xml =================================================================== RCS file: /cvsroot/andromdaplugins/plugins/pom.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- pom.xml 13 Jun 2006 02:14:16 -0000 1.10 +++ pom.xml 19 Jul 2006 15:14:32 -0000 1.11 @@ -167,6 +167,15 @@ </execution> </executions> </plugin> + <!-- AMW Add JDK source/target since switching CC jdk to 1.5 --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.4</source> + <target>1.4</target> + </configuration> + </plugin> </plugins> </pluginManagement> </build> |