OSDN Git Service

Bugfix: build-impl.xml editing is not permit. Edit build.xml instead.
authorTakuya Ono <takuya-o@users.sourceforge.jp>
Tue, 28 Aug 2007 15:42:27 +0000 (15:42 +0000)
committerTakuya Ono <takuya-o@users.sourceforge.jp>
Tue, 28 Aug 2007 15:42:27 +0000 (15:42 +0000)
build.xml
nbproject/build-impl.xml

index b9c39ac..ad5cc50 100644 (file)
--- a/build.xml
+++ b/build.xml
     nbproject/build-impl.xml file. 
 
     -->
+
+  <!-- Add by tkyn -->
+  <target name="-signjar" if="signjar.storepass" >
+    <signjar jar="${dist.jar}" alias="CodeSigning" storepass="${signjar.storepass}"/>
+  </target>
+  <target name="-post-jar" depends="-signjar" >
+    <!-- tkyn
+        <copy todir="./deploy/">
+          <fileset dir="./dist/"/>
+        </copy> -->
+    <zip destfile="./deploy/mdc.zip"
+         basedir="./dist/"
+         excludes="**/README.TXT" />
+  </target>
+
 </project>
index 3cfc68b..3f8f3a8 100644 (file)
@@ -331,15 +331,6 @@ is divided into following sections:
   <target name="-post-jar">
     <!-- Empty placeholder for easier customization. -->
     <!-- You can override this target in the ../build.xml file. -->
-    <!-- Add by TKYN 
-        <copy todir="./deploy/">
-          <fileset dir="./dist/"/>
-        </copy> -->
-    <signjar jar="${dist.jar}" alias="CodeSigning" storepass="${signjar.storepass}"/>
-    <zip destfile="./deploy/mdc.zip"
-         basedir="./dist/"
-         excludes="**/README.TXT"
-    />
   </target>
   <target name="jar" depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR."/>
   <!--