Author: elecharny
Date: Wed Nov 1 06:27:55 2006
New Revision: 469918
URL: http://svn.apache.org/viewvc?view=rev&rev=469918
Log:
It seems that maven does not handle correctly more than one level of inheritence... Added
a maven-compiler-plugin directive to use jdk 1.5
Modified:
directory/trunks/apacheds/pom.xml
Modified: directory/trunks/apacheds/pom.xml
URL: http://svn.apache.org/viewvc/directory/trunks/apacheds/pom.xml?view=diff&rev=469918&r1=469917&r2=469918
==============================================================================
--- directory/trunks/apacheds/pom.xml (original)
+++ directory/trunks/apacheds/pom.xml Wed Nov 1 06:27:55 2006
@@ -401,7 +401,16 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
</plugin>
-
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+
<plugin>
<inherited>false</inherited>
<groupId>org.apache.maven.plugins</groupId>
|