You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/11/01 12:56:20 UTC

svn commit: r469877 - /directory/trunks/pom.xml

Author: elecharny
Date: Wed Nov  1 03:56:20 2006
New Revision: 469877

URL: http://svn.apache.org/viewvc?view=rev&rev=469877
Log:
Remove mina from the list of modules to be compiled within ADS. Switch to jdk 1.4, as we are now using java 1.5

Modified:
    directory/trunks/pom.xml

Modified: directory/trunks/pom.xml
URL: http://svn.apache.org/viewvc/directory/trunks/pom.xml?view=diff&rev=469877&r1=469876&r2=469877
==============================================================================
--- directory/trunks/pom.xml (original)
+++ directory/trunks/pom.xml Wed Nov  1 03:56:20 2006
@@ -12,7 +12,8 @@
   <inceptionYear>2004</inceptionYear>
   <packaging>pom</packaging>
   <modules>
-    <module>mina</module>
+    <!-- Mina will become a TLP, so no need to compile it here -->
+    <!--module>mina</module-->
     <module>apacheds</module>
     <module>shared</module>
     <module>daemon</module>
@@ -91,8 +92,8 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <source>1.4</source>
-          <target>1.4</target>
+          <source>1.5</source>
+          <target>1.5</target>
         </configuration>
       </plugin>
     </plugins>