You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2006/12/04 12:56:49 UTC

svn commit: r482149 - /jackrabbit/trunk/pom.xml

Author: jukka
Date: Mon Dec  4 03:56:48 2006
New Revision: 482149

URL: http://svn.apache.org/viewvc?view=rev&rev=482149
Log:
JCR-661: Fixed the jcr-rmi multimodule build as suggested by Jan Kuzniak.

Modified:
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?view=diff&rev=482149&r1=482148&r2=482149
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Mon Dec  4 03:56:48 2006
@@ -52,10 +52,10 @@
     <module>jackrabbit-jcr-tests</module>
     <module>jackrabbit-core</module>
     <module>jackrabbit-index-filters</module>
-    <!-- <module>jackrabbit-jcr-rmi</module> - rmic vs. multimodule -->
+    <module>jackrabbit-jcr-rmi</module>
     <module>jackrabbit-webdav</module>
     <module>jackrabbit-jcr-server</module>
-    <!-- <module>jackrabbit-webapp</module> - rmi missing -->
+    <module>jackrabbit-webapp</module>
     <module>jackrabbit-jca</module>
   </modules>
 
@@ -83,6 +83,19 @@
             <phase>install</phase>
           </execution>
         </executions>
+      </plugin>
+      <!-- JCR-661: Plugin dependencies are inherited -->
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <dependencies>
+          <dependency>
+            <groupId>sun</groupId>
+            <artifactId>tools</artifactId>
+            <version>1.0</version>
+            <scope>system</scope>
+            <systemPath>${java.home}/../lib/tools.jar</systemPath>
+          </dependency>
+        </dependencies>
       </plugin>
     </plugins>
   </build>