configured appassembler to only use booter scripts for windows; renamed lib --> repo since appassembler's scripts don't support configurable repo names for booters
diff --git a/asterix-server/pom.xml b/asterix-server/pom.xml
index 8500228..f6962c3 100644
--- a/asterix-server/pom.xml
+++ b/asterix-server/pom.xml
@@ -30,14 +30,38 @@
         <version>1.3</version>
         <configuration>
           <assembleDirectory>
-            ${project.build.directory}/generated-resources/appassembler
+            ${project.build.directory}/appassembler
           </assembleDirectory>
+          <repositoryLayout>flat</repositoryLayout>
+          <programs>
+            <program>
+              <platforms>
+                <platform>unix</platform>
+              </platforms>
+              <name>asterixcc</name>
+              <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
+              <commandLineArguments>
+                 <commandLineArgument>-app-cc-main-class</commandLineArgument>
+                 <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.CCApplicationEntryPoint</commandLineArgument>
+              </commandLineArguments>
+            </program>
+            <program>
+              <platforms>
+                <platform>unix</platform>
+              </platforms>
+              <name>asterixnc</name>
+              <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
+              <commandLineArguments>
+                <commandLineArgument>-app-nc-main-class</commandLineArgument>
+                <commandLineArgument>edu.uci.ics.asterix.hyracks.bootstrap.NCApplicationEntryPoint</commandLineArgument>
+              </commandLineArguments>
+            </program>
+          </programs>
           <daemons>
             <daemon>
               <id>asterixcc</id>
               <mainClass>edu.uci.ics.hyracks.control.cc.CCDriver</mainClass>
               <platforms>
-              	<platform>booter-unix</platform>
               	<platform>booter-windows</platform>
               </platforms>
               <commandLineArguments>
@@ -49,7 +73,6 @@
               <id>asterixnc</id>
               <mainClass>edu.uci.ics.hyracks.control.nc.NCDriver</mainClass>
               <platforms>
-              	<platform>booter-unix</platform>
               	<platform>booter-windows</platform>
               </platforms>
               <commandLineArguments>
@@ -62,6 +85,7 @@
         <executions>
           <execution>
             <goals>
+              <goal>assemble</goal>
               <goal>generate-daemons</goal>
               <goal>create-repository</goal>
             </goals>