You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by ml...@apache.org on 2013/02/01 12:56:12 UTC

svn commit: r1441404 - /manifoldcf/trunk/framework/combined-service/pom.xml

Author: mlizewski
Date: Fri Feb  1 11:56:12 2013
New Revision: 1441404

URL: http://svn.apache.org/viewvc?rev=1441404&view=rev
Log:
fix CONNECTORS-636

Modified:
    manifoldcf/trunk/framework/combined-service/pom.xml

Modified: manifoldcf/trunk/framework/combined-service/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/combined-service/pom.xml?rev=1441404&r1=1441403&r2=1441404&view=diff
==============================================================================
--- manifoldcf/trunk/framework/combined-service/pom.xml (original)
+++ manifoldcf/trunk/framework/combined-service/pom.xml Fri Feb  1 11:56:12 2013
@@ -61,6 +61,13 @@
       <version>${project.version}</version>
     </dependency>
 
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>mcf-crawler-ui</artifactId>
+      <version>${project.version}</version>
+	  <type>war</type>
+    </dependency>
+
     <!-- web dependencies -->
     <dependency>
       <groupId>javax.servlet</groupId>
@@ -173,4 +180,34 @@
 
   </dependencies>
 
+  <build>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-war-plugin</artifactId>
+          <configuration>
+            <overlays>
+              <overlay>
+                <groupId>org.apache.manifoldcf</groupId>
+                <artifactId>mcf-crawler-ui</artifactId>
+                <type>war</type>
+                <includes>
+                  <include>*.jsp</include>
+                </includes>
+                <targetPath>/</targetPath>
+              </overlay>
+              <overlay>
+                <groupId>org.apache.manifoldcf</groupId>
+                <artifactId>mcf-crawler-ui</artifactId>
+                <type>war</type>
+                <includes>
+                  <include>WEB-INF/jsp/*</include>
+                </includes>
+                <targetPath>/</targetPath>
+              </overlay>
+            </overlays>
+          </configuration>
+        </plugin>
+      </plugins>
+    </build>
 </project>
\ No newline at end of file