Author: kwright
Date: Fri Apr 28 10:59:32 2017
New Revision: 1793039

URL: http://svn.apache.org/viewvc?rev=1793039&view=rev
Log:
Add copy of style.css to crawler-ui war

Modified:
    manifoldcf/branches/CONNECTORS-1418/framework/build.xml

Modified: manifoldcf/branches/CONNECTORS-1418/framework/build.xml
URL: 
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1418/framework/build.xml?rev=1793039&r1=1793038&r2=1793039&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1418/framework/build.xml (original)
+++ manifoldcf/branches/CONNECTORS-1418/framework/build.xml Fri Apr 28 10:59:32 
2017
@@ -32,7 +32,11 @@
     <path id="less-classpath">
         <fileset dir="../lib">
             <include name="less4j*.jar"/>
+            <include name="antlr-runtime*.jar"/>
+            <include name="commons-beanutils*.jar"/>
+            <include name="protobuf-java*.jar"/>
             <include name="commons-io*.jar"/>
+            <include name="commons-logging*.jar"/>
         </fileset>
     </path>
     
@@ -385,15 +389,6 @@
             </classpath>
         </javac>
 
-        <!-- Compile the less files to css -->
-        <!-- The compilation invocation needs to have a classpath like this:
-            <classpath>
-                <path refid="less-classpath"/>
-                <pathelement location="build/less-compiler/classes"/>
-            </classpath>
-        -->
-        <!-- MHL -->
-        
         <!-- Define the jsp compilation task using tomcat libraries -->
         <taskdef classname="org.apache.jasper.JspC" name="jasper2" > 
             <classpath id="jspc.classpath"> 
@@ -710,6 +705,10 @@
         <copy todir="build/webapp/crawler-ui">
             <fileset dir="crawler-ui/src/main/webapp" 
includes="**/*.jsp,**/*.css,**/*.png,**/*.html,**/*.js,**/*.eot,**/*.svg,**/*.ttf,**/*.woff,**/*.woff2"/>
         </copy>
+        <mkdir dir="build/webapp/crawler-ui/css"/>
+        <copy todir="build/webapp/crawler-ui/css">
+            <fileset dir="build/crawler-ui/css" includes="**/*.css"/>
+        </copy>
         <jar destfile="build/webapp/crawler-ui/WEB-INF/lib/mcf-crawler-ui.jar" 
basedir="build/crawler-ui/classes"/>
     </target>
   


Reply via email to