Just that it spent some time checking that everything was already compiled (which always was because Eclipse takes care of that for me). It's just a few seconds, but it becomes annoying.

Packaging is the only step I need to do outside of Eclipse before running.

--
Salut,

Jordi.

En/na BAZLEY, Sebastian ha escrit:
Just wondering - what was wrong with the original package target?

I used it all the time - or I sometimes use install.

S.
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 27 November 2003 12:06
To: [EMAIL PROTECTED]
Subject: cvs commit: jakarta-jmeter build.xml


jsalvata 2003/11/27 04:06:20


Modified: . build.xml
Log:
Add a package-only target to save some time in the edit-build-test cycle
from Eclipse.
Revision Changes Path
1.136 +4 -2 jakarta-jmeter/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-jmeter/build.xml,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- build.xml 25 Nov 2003 17:17:15 -0000 1.135
+++ build.xml 27 Nov 2003 12:06:20 -0000 1.136
@@ -551,6 +551,8 @@
<target name="compile"
depends="compile-core,compile-components,compile-functions,compile-protocols
,compile-rmi,compile-htmlparser" description="Compile everything."/>
+ <target name="package" depends="compile, package-only"/>
+ <!--
N.B. Eclipse (and perhaps other Java IDEs) copies all files to the build
directory, unless
told otherwise. This means that there might be copies of property and
image files in the
@@ -566,7 +568,7 @@
needing to create jar files first. However, this would mean changing the
way JMeter loads
some of its classes - at present JMeter can only run from jar files.
-->
- <target name="package" depends="compile">
+ <target name="package-only" description="Package already-compiled
classes (shortcut for IDE users)">
<mkdir dir="${dest.jar}"/>
<jar jarfile="${dest.jar}/ApacheJMeter_core.jar"
excludes="**/NewDriver*" manifest="${src.core}/MANIFEST">
<!-- Only include class files - see above -->


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to