Replace test name to actual css name

git-svn-id: https://svn.apache.org/repos/asf/manifoldcf/branches/CONNECTORS-1418@1793151 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/crawler-ui/pom.xml b/framework/crawler-ui/pom.xml
index 4b69ee1..28c1808 100644
--- a/framework/crawler-ui/pom.xml
+++ b/framework/crawler-ui/pom.xml
@@ -46,10 +46,7 @@
         <executions>
             <execution>
               <id>compile-less</id>
-              <!-- Currently during process-classes phase, css is generated, but during the package phase,
-              the generated css will be over written by the file from source css folder. It's intentional for now,
-              but once the decision is made about approach, we can change the phase to prepare-package -->
-              <phase>process-classes</phase>
+              <phase>prepare-package</phase>
               <goals>
                   <goal>java</goal>
               </goals>
diff --git a/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java b/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
index 92afcd5..882b1d9 100644
--- a/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
+++ b/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
@@ -106,8 +106,7 @@
   {
 
     String outputLess = lessFolderPath + "/style.less";
-    //TODO: Need to change to actual name in final impl
-    String outputCSS = cssFolderPath + "/style_test.css";
+    String outputCSS = cssFolderPath + "/style.css";
     boolean compress = false;
 
     MCFLessCompiler compiler = new MCFLessCompiler();