Sophie

Sophie

distrib > Mageia > 3 > i586 > media > core-release-src > by-pkgid > 597ab73dce9f63f9c381e3c5b026b60e > files > 1

classycle-1.4-3.mga3.src.rpm

--- build.xml	2012-04-14 08:27:38.000000000 +0200
+++ build.xml-gil	2012-04-14 09:52:39.297225675 +0200
@@ -12,15 +12,15 @@
   <property name="OUTPUT_PATH_SRCTEST" value="classes"/>
 
   <!-- set output path for generation of apidoc ============================-->
-  <property name="OUTPUT_PATH_APIDOC" value="docs/WebSite/apidoc"/>
+  <property name="OUTPUT_PATH_APIDOC" value="target/site/apidocs"/>
 
   <!-- set distribution file name ==========================================-->
   <property name="DIST_NAME" value="classycle${version}.zip"/>
 
   <!-- set classpath for compilation of src ================================-->
   <path id="src_classpath">
-    <fileset dir="lib">
-      <include name="**/*.jar"/>
+    <fileset dir="/usr/share/java">
+      <include name="ant/ant-testutil.jar"/>
     </fileset>
   </path>
 
@@ -74,7 +74,8 @@
   <!-- generate jar ======================================================-->
   <target name="jar" depends="clean, compile_src"
           description="Create jar">
-    <jar destfile="classycle.jar" basedir="${OUTPUT_PATH_SRC}">
+    <mkdir dir="target"/>
+    <jar destfile="target/classycle-${version}.jar" basedir="${OUTPUT_PATH_SRC}">
       <manifest>
         <attribute name="Main-Class" value="classycle.Analyser"/>
       </manifest>
@@ -94,7 +95,6 @@
               version="true"
               use="true"
               windowtitle="Classycle"
-              overview="overview.html"
               failonerror="true"/>
   </target>