forked from apache/jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
1474 lines (1302 loc) · 60 KB
/
Copy pathbuild.xml
File metadata and controls
1474 lines (1302 loc) · 60 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="JMeter" default="all" basedir=".">
<description>
To build JMeter from source and install:
ant [all]
To rebuild and install:
ant install
To update documentation (requires Anakia to be present)
ant docs-site
ant docs-printable
To build API documentation (Javadoc)
ant docs-api
To build all the docs
ant docs-all
To build all and package up the files for distribution
ant distribution [ -Djmeter.version=vvvv ]
To create tar and tgz of the web-site documentation (docs and api)
ant site [ -Djmeter.version=vvvv ]
For more info:
ant -projecthelp
To diagnose usage of deprecated APIs:
ant -Ddeprecation=on clean compile
</description>
<!--
Note
====
As with most other Jakarta projects, Gump (http://jakarta.apache.org/gump/) is used to
perform automated builds and tests on JMeter.
Gump uses its project/jakarta-jmeter.xml file to determine which target to use.
The current setting is: <ant target="dist">
Any changes to the dependency list for dist may affect Gump.
Now the dist target depends on "assume-libs-present", so if additional libraries are added to that,
the Gump project file for JMeter must also be updated.
Jars that are not required by the dist target do not need to be added to the Gump project file.
-->
<!-- Are we running under Gump? -->
<property name="gump.run" value="false"/>
<!-- The version of this file -->
<property name="version.build" value="$Revision$"/>
<!-- Renamed targets -->
<target name="all-docs">
<echo message="Target has been renamed to docs-all"/>
<antcall target="docs-all"/>
</target>
<target name="api-docs">
<echo message="Target has been renamed to docs-api"/>
<antcall target="docs-api"/>
</target>
<target name="printable-docs">
<echo message="Target has been renamed to docs-printable"/>
<antcall target="docs-printable"/>
</target>
<target name="docs">
<echo message="Target has been renamed to docs-site"/>
<antcall target="docs-site"/>
</target>
<target name="src-dist">
<echo message="Target has been renamed to dist-src"/>
<antcall target="dist-src"/>
</target>
<!-- Findbugs task and target -->
<!--
Findbugs is licensed under the Lesser GNU Public License
HomePage: http://www.cs.umd.edu/~pugh/java/bugs/
To use the findbugs target, download and install the findbugs binary distribution
Set the value of findbugs.homedir according to where you installed findbugs, for example:
ant findbugs -Dfindbugs.homedir=/etc/findbugs -Dfindbugs.level=medium
[The defaults are /findbugs and medium]
-->
<property name="findbugs.homedir" value="/findbugs" />
<property name="findbugs.level" value="medium" />
<property name="findbugs.outName" value="reports/jmeter-fb" />
<target name="findbugs" description="Run the stand-alone Findbugs detector">
<echoproperties prefix="findbugs"/>
<mkdir dir="reports"/>
<taskdef name="findbugs"
classpath="${findbugs.homedir}/lib/findbugs-ant.jar"
classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/>
<findbugs home="${findbugs.homedir}"
output="xml"
reportlevel="${findbugs.level}"
excludeFilter="fb-excludes.xml"
outputFile="${findbugs.outName}.xml" >
<class location="${dest.jar}/*.jar" />
<class location="${dest.jar.jmeter}/*.jar" />
<sourcePath path="${src.core}" />
<sourcePath path="${src.http}" />
<sourcePath path="${src.ftp}" />
<sourcePath path="${src.java}" />
<sourcePath path="${src.junit}" />
<sourcePath path="${src.jdbc}" />
<sourcePath path="${src.ldap}" />
<sourcePath path="${src.mail}" />
<sourcePath path="${src.components}" />
<sourcePath path="${src.functions}" />
<class location="${lib.dir}/jorphan.jar" />
<sourcePath path="${src.jorphan}" />
<sourcePath path="${src.tcp}" />
<sourcePath path="${src.jms}" />
<sourcePath path="${src.report}" />
<!--
Uncomment the following 2 lines to include htmlparser in the analysis
<class location="${lib.dir}/htmlparser.jar" />
<sourcePath path="${src.htmlparser}" />
-->
<auxClasspath>
<fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
</auxClasspath>
<auxClasspath>
<fileset dir="${lib.opt}">
<include name="*.jar"/>
</fileset>
</auxClasspath>
</findbugs>
<antcall target="findbugs-style"/>
</target>
<!-- Convert findbugs XML output to CSV -->
<target name="findbugs-style">
<xslt style="fb-csv.xsl"
force="true"
in="${findbugs.outName}.xml"
out="${findbugs.outName}.csv">
</xslt>
</target>
<!-- Where the Sources live -->
<property name="src.dir" value="src"/>
<property name="src.core" value="src/core"/>
<property name="src.http" value="src/protocol/http"/>
<property name="src.ftp" value="src/protocol/ftp"/>
<property name="src.test" value="test/src"/>
<property name="src.jdbc" value="src/protocol/jdbc"/>
<property name="src.java" value="src/protocol/java"/>
<property name="src.junit" value="src/junit"/>
<property name="src.components" value="src/components"/>
<property name="src.functions" value="src/functions"/>
<property name="src.jorphan" value="src/jorphan"/>
<property name="src.ldap" value="src/protocol/ldap"/>
<property name="src.htmlparser" value="src/htmlparser"/>
<property name="src.tcp" value="src/protocol/tcp"/>
<property name="src.examples" value="src/examples"/>
<property name="src.mail" value="src/protocol/mail"/>
<property name="src.monitor.components" value="src/monitor/components"/>
<property name="src.monitor.model" value="src/monitor/model"/>
<property name="src.jms" value="src/protocol/jms"/>
<property name="src.report" value="src/reports"/>
<!-- Where the documentation sources live -->
<property name="src.docs" value="xdocs"/>
<property name="src.images" value="xdocs/images"/>
<property name="src.demos" value="xdocs/demos"/>
<!-- Javadoc sources -->
<path id="srcpaths">
<pathelement location="${src.core}"/>
<pathelement location="${src.components}"/>
<pathelement location="${src.functions}"/>
<pathelement location="${src.http}"/>
<pathelement location="${src.ftp}"/>
<pathelement location="${src.jdbc}"/>
<pathelement location="${src.java}"/>
<pathelement location="${src.junit}"/>
<pathelement location="${src.jorphan}"/>
<pathelement location="${src.ldap}"/>
<pathelement location="${src.htmlparser}"/>
<pathelement location="${src.tcp}"/>
<pathelement location="${src.examples}"/>
<pathelement location="${src.mail}"/>
<pathelement location="${src.monitor.components}"/>
<pathelement location="${src.monitor.model}"/>
<pathelement location="${src.jms}"/>
<pathelement location="${src.report}"/>
</path>
<!-- Temporary build directories: where the .class live -->
<property name="build.dir" location="build"/>
<property name="build.core" value="build/core"/>
<property name="build.http" value="build/protocol/http"/>
<property name="build.ftp" value="build/protocol/ftp"/>
<property name="build.jdbc" value="build/protocol/jdbc"/>
<property name="build.java" value="build/protocol/java"/>
<property name="build.junit" value="build/junit"/>
<property name="build.components" value="build/components"/>
<property name="build.functions" value="build/functions"/>
<property name="build.jorphan" value="build/jorphan"/>
<property name="build.ldap" location="build/protocol/ldap"/>
<property name="build.mail" location="build/protocol/mail"/>
<property name="build.htmlparser" location="build/htmlparser"/>
<property name="build.tcp" location="build/protocol/tcp"/>
<property name="build.examples" location="build/examples"/>
<property name="build.monitor.components" location="build/monitor/components"/>
<property name="build.monitor.model" location="build/monitor/model"/>
<property name="build.jms" location="build/protocol/jms"/>
<property name="build.report" location="build/reports"/>
<property name="build.test" location="build/test"/>
<!-- Path prefix to allow Anakia to find stylesheets if running under Eclipse -->
<!--
Anakia looks for stylesheets relative to the java launch directory.
Use the External Tools properties page to define the variable
as the relative path to the directory where this build file is found.
For example:
eclipse.anakia=workspace/jmeter
An alternative is to define it as a command-line argument on the Main page;
this allows one to use a macro name, so is more portable.
For example:
-Declipse.anakia=workspace/${project_name}
WARNING: you must ensure that you have selected a file or directory in
the Navigator pane before attempting to run the build, or Eclipse will
complain that it cannot resolve the variable name, and it can mark the
launch configuration as having failed.
-->
<property name="eclipse.anakia" value="."/>
<!-- Where the build result .jars will be placed -->
<property name="dest.jar" value="lib/ext"/>
<property name="dest.jar.jmeter" value="bin"/>
<!-- Where the API documentation lives -->
<property name="dest.docs.api" value="docs/api"/>
<!-- Where the doc results live -->
<property name="dest.docs" value="docs"/>
<property name="dest.printable_docs" value="printable_docs"/>
<!-- Directory where these 3rd party libraries will live -->
<property name="lib.dir" value="lib"/>
<property name="legacy.dir" location="legacy"/>
<!-- Directory where Optional 3rd party libraries will live -->
<property name="lib.opt" value="lib/opt"/>
<!-- Other stuff -->
<property name="extras.dir" value="extras"/>
<!-- Where the distribution packages will be created -->
<property name="dist.dir" value="dist"/>
<!-- Where the web-site packages will be created -->
<property name="site.dir" value="site"/>
<!-- Compilation parameters -->
<property name="optimize" value="on"/>
<property name="deprecation" value="off"/>
<property name="target.java.version" value="1.5"/>
<property name="src.java.version" value="1.5"/>
<property name="encoding" value="UTF-8"/>
<!-- 3rd party libraries to be included in the binary distribution -->
<property name="avalon-framework.jar" value="${lib.dir}/avalon-framework-4.1.4.jar"/>
<property name="jakarta-oro.jar" value="${lib.dir}/jakarta-oro-2.0.8.jar"/>
<property name="commons-collections.jar" value="${lib.dir}/commons-collections.jar"/>
<property name="commons-httpclient.jar" value="${lib.dir}/commons-httpclient-2.0.jar"/>
<property name="commons-logging.jar" value="${lib.dir}/commons-logging.jar"/>
<property name="excalibur-logger.jar" value="${lib.dir}/excalibur-logger-1.1.jar"/>
<property name="excalibur-i18n.jar" value="${lib.dir}/excalibur-i18n-1.1.jar"/>
<property name="excalibur-compatibility.jar" value="${lib.dir}/excalibur-compatibility-1.1.jar"/>
<property name="batik-awt-util.jar" value="${lib.dir}/batik-awt-util.jar"/>
<property name="junit.jar" value="${lib.dir}/junit.jar"/>
<property name="logkit.jar" value="${lib.dir}/logkit-1.2.jar"/>
<property name="excalibur-datasource.jar" value="${lib.dir}/excalibur-datasource-1.1.1.jar"/>
<property name="excalibur-pool.jar" value="${lib.dir}/excalibur-pool-1.2.jar"/>
<property name="excalibur-instrument.jar" value="${lib.dir}/excalibur-instrument-1.0.jar"/>
<property name="xstream.jar" value="${lib.dir}/xstream-1.1.2.jar"/>
<property name="xpp3.jar" value="${lib.dir}/xpp3_min-1.1.3.4.I.jar"/>
<!-- The following 3 jars are probably optional for JDK1.4 -->
<property name="xalan.jar" value="${lib.dir}/xalan.jar"/>
<property name="xerces.jar" value="${lib.dir}/xercesImpl.jar"/>
<property name="xml-apis.jar" value="${lib.dir}/xml-apis.jar"/>
<property name="jdom.jar" value="${lib.dir}/jdom-1.0.jar"/>
<property name="js.jar" value="${lib.dir}/js.jar"/>
<property name="soap.jar" value="${lib.dir}/soap.jar"/>
<property name="tidy.jar" value="${lib.dir}/Tidy.jar"/>
<patternset id="external.jars">
<include name="LICENSE"/>
<include name="NOTICE"/>
<include name="README"/>
<include name="INSTALL"/>
<include name="${lib.dir}/*.html"/>
<include name="${lib.dir}/LICENSE*.*"/>
<include name="${avalon-framework.jar}"/>
<include name="${jakarta-oro.jar}"/>
<include name="${commons-collections.jar}"/>
<include name="${commons-httpclient.jar}"/>
<include name="${commons-logging.jar}"/>
<include name="${excalibur-logger.jar}"/>
<include name="${excalibur-i18n.jar}"/>
<include name="${excalibur-compatibility.jar}"/>
<include name="${junit.jar}"/>
<include name="${logkit.jar}"/>
<include name="${xalan.jar}"/>
<include name="${xerces.jar}"/>
<include name="${xml-apis.jar}"/>
<include name="${jdom.jar}"/>
<include name="${js.jar}"/>
<include name="${soap.jar}"/>
<include name="${tidy.jar}"/>
<include name="${excalibur-datasource.jar}"/>
<include name="${excalibur-pool.jar}"/>
<include name="${excalibur-instrument.jar}"/>
<include name="${batik-awt-util.jar}"/>
<include name="${xstream.jar}"/>
<include name="${xpp3.jar}"/>
</patternset>
<!--
Optional jars, not included in distribution.
Any such jars need to be downloaded separately.
These can be put into ${lib.dir} or ${lib.opt}
- both of these are included in the build classpath
Any jars put into ${lib.dir} will be included in
the classpath used by JMeter to load classes.
Jars in ${lib.opt} are NOT normally included by JMeter.
Placing an optional jar in ${lib.opt} means that it
will be included in the build classpath, but it will
not be included in the runtime classpath. This is intended
for testing JMeter without the optional Jar file(s).
-->
<!-- Build classpath (includes the optional jar directory) -->
<path id="classpath">
<fileset dir="${lib.dir}" includes="*.jar"/>
<fileset dir="${lib.opt}" includes="*.jar"/>
</path>
<!-- Anakia classpath -->
<!--
N.B. On some OSes - e.g. VMS - multiple "." are converted to other characters
So replace the version part with "*" to match any version.
-->
<path id="anakia.classpath">
<fileset dir="${lib.dir}" includes="velocity*.jar"/>
<fileset dir="${legacy.dir}" includes="jdom-b9.jar"/>
<fileset dir="${lib.dir}" includes="commons-collections*.jar"/>
<fileset dir="${lib.dir}" includes="logkit-*.jar"/>
</path>
<target name="init-version">
<tstamp/>
<!-- JMeter version -->
<property name="jmeter.version" value="2.1.${DSTAMP}"/>
</target>
<target name="init" depends="check-libs,report-missing-libs,init-version">
<!-- Create the optional directory (fileset complains if it is missing) -->
<mkdir dir="${lib.opt}"/>
</target>
<!-- JMeter Javadoc version (own variable is used so can be overriden independently) -->
<property name="docversion" value="${jmeter.version}"/>
<target name="init-docs" depends="check-anakia,report-anakia-missing">
<echo>eclipse.anakia = ${eclipse.anakia}</echo>
</target>
<!--
- Check for optional libraries.
-->
<target name="check-libs" description="Check availability of optional libraries." unless="assuming.libs.present">
<!-- Create the optional directory (fileset complains if it is missing) -->
<mkdir dir="${lib.opt}"/>
<available classname="com.sun.net.ssl.internal.ssl.Provider" property="jsse.present">
<classpath refid="classpath"/>
</available>
<condition property="javamail.complete">
<and>
<available classname="javax.mail.Transport" classpathref="classpath"/>
<available classname="javax.activation.DataHandler" classpathref="classpath"/>
</and>
</condition>
<available classname="iaik.protocol.https.Handler" property="isasilk.present">
<classpath refid="classpath"/>
</available>
<available classname="bsh.Interpreter" property="beanshell.present">
<classpath refid="classpath"/>
</available>
<available classname="org.apache.bsf.BSFManager" property="bsf.present">
<classpath refid="classpath"/>
</available>
<available classname="javax.jms.Message" property="jms.present">
<classpath refid="classpath"/>
</available>
</target>
<!--
- Messages for missing libraries
-->
<target name="ssl-message" depends="check-libs" unless="jsse.present">
<echo message="Classes for SSL not found in classpath"/>
</target>
<target name="iaik-message" depends="check-libs" unless="isasilk.present">
<echo message="Classes for IAIK iSaSiLk not found in classpath"/>
</target>
<target name="mail-message" depends="check-libs" unless="javamail.complete">
<echo message="Classes for Mail support not found in classpath"/>
</target>
<target name="beanshell-message" depends="check-libs" unless="beanshell.present">
<echo message="Classes for BeanShell support not found in classpath"/>
</target>
<target name="bsf-message" depends="check-libs" unless="bsf.present">
<echo message="Classes for BSF support not found in classpath"/>
</target>
<target name="jms-message" depends="check-libs" unless="jms.present">
<echo message="Classes for JMS support not found in classpath"/>
</target>
<target name="report-missing-libs"
depends="ssl-message,iaik-message,mail-message,beanshell-message,bsf-message,jms-message"
/>
<!--
- Check for anakia task
-->
<target name="check-anakia">
<available classpathref="anakia.classpath" classname="org.apache.velocity.anakia.AnakiaTask" property="AnakiaTask.present"/>
</target>
<target name="report-anakia-missing" depends="check-anakia" unless="AnakiaTask.present">
<echo>
AnakiaTask is not present, documentation will not be generated.
</echo>
</target>
<target name="compile-core" depends="compile-jorphan,update-version" description="Compile JMeter core classes.">
<mkdir dir="${build.core}"/>
<javac srcdir="${src.core}" destdir="${build.core}" optimize="${optimize}" source="${src.java.version}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<exclude name="org/apache/jmeter/util/JsseSSLManager.java" unless="jsse.present"/>
<exclude name="org/apache/jmeter/util/keystore/PKCS12KeyStore.java" unless="isasilk.present"/>
<exclude name="org/apache/jmeter/util/keystore/DefaultKeyStore.java" unless="jsse.present"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
</classpath>
</javac>
</target>
<target name="update-version" unless="version.noupdate">
<echo>Updating version string</echo>
<replaceregexp file="${src.core}/org/apache/jmeter/util/JMeterVersion.java"
match="VERSION = ".*?""
replace="VERSION = "${jmeter.version}""/>
</target>
<target name="compile-components" depends="compile-jorphan,compile-core" description="Compile generic (protocol-independent) components.">
<mkdir dir="${build.components}"/>
<javac srcdir="${src.components}" destdir="${build.components}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<exclude name="org/apache/jmeter/visualizers/MailerVisualizer.java" unless="javamail.complete"/>
<exclude name="org/apache/jmeter/reporters/MailerModel.java" unless="javamail.complete"/>
<exclude name="org/apache/jmeter/reporters/MailerResultCollector.java" unless="javamail.complete"/>
<exclude name="org/apache/jmeter/assertions/**/BeanShell*.java" unless="beanshell.present"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-functions" depends="compile-jorphan,compile-core" description="Compile functions.">
<mkdir dir="${build.functions}"/>
<javac srcdir="${src.functions}" destdir="${build.functions}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-http" depends="compile-jorphan,compile-core,compile-htmlparser" description="Compile components specific to HTTP sampling.">
<mkdir dir="${build.http}"/>
<javac srcdir="${src.http}" destdir="${build.http}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<exclude name="org/apache/jmeter/protocol/http/sampler/WebServiceSampler.java" unless="javamail.complete"/>
<exclude name="org/apache/jmeter/protocol/http/control/gui/WebServiceSamplerGui.java" unless="javamail.complete"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
<pathelement location="${build.components}"/>
<pathelement location="${build.htmlparser}"/>
</classpath>
</javac>
</target>
<target name="compile-tests" depends="compile" description="Compile components specific to HTTP sampling.">
<mkdir dir="${build.test}"/>
<javac srcdir="${src.test}" destdir="${build.test}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
<pathelement location="${build.components}"/>
<pathelement location="${build.htmlparser}"/>
<pathelement location="${build.http}"/>
<pathelement location="${build.ftp}"/>
<pathelement location="${build.functions}"/>
<pathelement location="${build.java}"/>
<pathelement location="${build.jdbc}"/>
<pathelement location="${build.ldap}"/>
<pathelement location="${build.mail}"/>
<pathelement location="${build.monitor.components}"/>
<pathelement location="${build.monitor.model}"/>
<pathelement location="${build.tcp}"/>
</classpath>
</javac>
</target>
<target name="compile-ftp" depends="compile-jorphan,compile-core" description="Compile components specific to FTP sampling.">
<mkdir dir="${build.ftp}"/>
<javac srcdir="${src.ftp}" destdir="${build.ftp}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-jdbc" depends="compile-jorphan,compile-core" description="Compile components specific to JDBC sampling.">
<mkdir dir="${build.jdbc}"/>
<javac srcdir="${src.jdbc}" destdir="${build.jdbc}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-ldap" depends="compile-jorphan,compile-core"
description="Compile components specific to LDAP sampling.">
<mkdir dir="${build.ldap}"/>
<javac srcdir="${src.ldap}" destdir="${build.ldap}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="create-mail-dir">
<mkdir dir="${build.mail}"/>
</target>
<target name="compile-mail" depends="compile-jorphan,compile-core,create-mail-dir" if="javamail.complete"
description="Compile components specific to IMAP and POP3 sampling.">
<javac srcdir="${src.mail}" destdir="${build.mail}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-java" depends="compile-jorphan,compile-core" description="Compile components specific to Java sampling.">
<mkdir dir="${build.java}"/>
<javac srcdir="${src.java}" destdir="${build.java}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<exclude name="org/apache/jmeter/protocol/java/**/BeanShell*.java" unless="beanshell.present"/>
<exclude name="org/apache/jmeter/protocol/java/**/BSF*.java" unless="bsf.present"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-junit" depends="compile-jorphan,compile-core" description="Compile components specific to JUnit sampling.">
<mkdir dir="${build.junit}"/>
<javac srcdir="${src.junit}" destdir="${build.junit}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-report" depends="compile-jorphan,compile-core,compile-components"
description="Compile report components.">
<mkdir dir="${build.report}"/>
<javac srcdir="${src.report}" destdir="${build.report}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-tcp" depends="compile-jorphan,compile-core" description="Compile components specific to TCP sampling.">
<mkdir dir="${build.tcp}"/>
<javac srcdir="${src.tcp}" destdir="${build.tcp}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-protocols" depends="compile-http,compile-ftp,compile-jdbc,compile-java,compile-ldap,compile-mail,compile-tcp" description="Compile all protocol-specific components."/>
<target name="compile-examples" depends="compile-jorphan,compile-core" description="Compile example components.">
<mkdir dir="${build.examples}"/>
<javac srcdir="${src.examples}" destdir="${build.examples}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-monitor" depends="compile-monitor-model,compile-monitor-components"/>
<target name="compile-monitor-components"
depends="compile-jorphan,compile-core,compile-components,compile-monitor-model">
<mkdir dir="${build.monitor.components}"/>
<javac srcdir="${src.monitor.components}" source="${src.java.version}" destdir="${build.monitor.components}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.monitor.model}"/>
<pathelement location="${build.http}"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
<pathelement location="${build.components}"/>
</classpath>
</javac>
</target>
<target name="compile-monitor-model" depends="compile-jorphan,compile-core">
<mkdir dir="${build.monitor.model}"/>
<javac srcdir="${src.monitor.model}" destdir="${build.monitor.model}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-jorphan" depends="init" description="Compile JOrphan utility classes.">
<mkdir dir="${build.jorphan}"/>
<javac srcdir="${src.jorphan}" destdir="${build.jorphan}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
</classpath>
</javac>
</target>
<target name="compile-rmi" depends="compile-jorphan,compile-core" description="Compile RMI stubs and skeletons.">
<rmic base="${build.core}" classname="org.apache.jmeter.engine.RemoteJMeterEngineImpl">
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement path="${build.core}"/>
</classpath>
</rmic>
<rmic base="${build.core}" classname="org.apache.jmeter.samplers.RemoteSampleListenerImpl">
<classpath>
<path refid="classpath"/>
<pathelement path="${build.core}"/>
</classpath>
</rmic>
</target>
<target name="compile-htmlparser" depends="" description="Compile htmlparser.">
<mkdir dir="${build.htmlparser}"/>
<javac srcdir="${src.htmlparser}" destdir="${build.htmlparser}" optimize="${optimize}" debug="on" source="${src.java.version}" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile-jms" depends="compile-jorphan,compile-core,compile-components"
description="Compile components specific to JMS sampling."
if="jms.present">
<mkdir dir="${build.jms}"/>
<javac srcdir="${src.jms}" destdir="${build.jms}" source="${src.java.version}" optimize="${optimize}" debug="on" target="${target.java.version}" deprecation="${deprecation}" encoding="${encoding}">
<include name="**/*.java"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.jorphan}"/>
<pathelement location="${build.core}"/>
</classpath>
</javac>
</target>
<target name="compile" depends="compile-core,compile-components,compile-functions,compile-protocols,compile-rmi,compile-htmlparser,compile-monitor,compile-junit,compile-report"
description="Compile everything."/>
<target name="package" depends="compile, package-only"
description="Compile everything and create the jars"/>
<!--
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
build directory. To avoid including the files twice in the jar file, we include only .class
files in the list of files to be processed.
An alternative solution is to copy the extra resources to the build tree, and then
include everything from the build tree.
This has the disadvantage that there are then two copies of each
properties file visible in Eclipse, and it is easy to pick the wrong one to edit,
especially as the build directory appears first ...
The advantage would be that JMeter could theoretically be run from the classes, without
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-only" description="Package already-compiled classes (shortcut for IDE users)">
<mkdir dir="${dest.jar}"/>
<!-- perhaps ought to include a basic jmeter.properties file in one of the jars,
given that JMeterUtils looks for it if it cannot find the external one
- otherwise, change utils to ignore it -->
<!-- JMeter launch jar -->
<jar jarfile="${dest.jar.jmeter}/ApacheJMeter.jar" includes="**/NewDriver*,**/DynamicClassLoader*"
manifest="${src.core}/MANIFEST"
basedir="${build.core}"/>
<!-- core -->
<jar jarfile="${dest.jar}/ApacheJMeter_core.jar" excludes="**/NewDriver*">
<!-- Only include class files from build tree - see above -->
<fileset dir="${build.core}" includes="**/*.class"/>
<fileset dir="${src.core}" includes="org/apache/jmeter/images/**"
excludes="**/*.properties"/>
<fileset dir="${src.core}" includes="**/*.properties">
<exclude name="*eucJP*"/>
</fileset>
<!-- This file is used by the jmeter -h option -->
<fileset dir="${src.core}" includes="org/apache/jmeter/help.txt"/>
</jar>
<!-- components -->
<jar jarfile="${dest.jar}/ApacheJMeter_components.jar">
<fileset dir="${build.components}" includes="**/*.class" />
<fileset dir="${src.components}" includes="**/*.properties" />
</jar>
<!-- functions -->
<jar jarfile="${dest.jar}/ApacheJMeter_functions.jar">
<fileset dir="${build.functions}" includes="**/*.class" />
<fileset dir="${src.functions}" includes="**/*.properties" />
</jar>
<!-- http -->
<jar jarfile="${dest.jar}/ApacheJMeter_http.jar">
<fileset dir="${build.http}" includes="**/*.class" />
<fileset dir="${src.http}" includes="**/*.properties" />
</jar>
<!-- ftp -->
<jar jarfile="${dest.jar}/ApacheJMeter_ftp.jar">
<fileset dir="${build.ftp}" includes="**/*.class" />
<fileset dir="${src.ftp}" includes="**/*.properties" />
</jar>
<!-- jdbc -->
<jar jarfile="${dest.jar}/ApacheJMeter_jdbc.jar">
<fileset dir="${build.jdbc}" includes="**/*.class" />
<fileset dir="${src.jdbc}" includes="**/*.properties" />
</jar>
<!-- java -->
<jar jarfile="${dest.jar}/ApacheJMeter_java.jar">
<fileset dir="${build.java}" includes="**/*.class" />
<fileset dir="${src.java}" includes="**/*.properties" />
</jar>
<!-- junit -->
<jar jarfile="${dest.jar}/ApacheJMeter_junit.jar">
<fileset dir="${build.junit}" includes="**/*.class" />
<fileset dir="${src.junit}" includes="**/*.properties" />
</jar>
<!-- report -->
<jar jarfile="${dest.jar}/ApacheJMeter_report.jar">
<fileset dir="${build.report}" includes="**/*.class" />
<fileset dir="${src.report}" includes="**/*.properties" />
</jar>
<!-- ldap -->
<jar jarfile="${dest.jar}/ApacheJMeter_ldap.jar">
<fileset dir="${build.ldap}" includes="**/*.class" />
<fileset dir="${src.ldap}" includes="**/*.properties" />
</jar>
<!-- mail -->
<jar jarfile="${dest.jar}/ApacheJMeter_mail.jar" >
<fileset dir="${build.mail}" includes="**/*.class" />
<fileset dir="${src.mail}" includes="**/*.properties" />
</jar>
<!-- tcp -->
<jar jarfile="${dest.jar}/ApacheJMeter_tcp.jar">
<fileset dir="${build.tcp}" includes="**/*.class" />
<fileset dir="${src.tcp}" includes="**/*.properties" />
</jar>
<!-- monitor -->
<jar jarfile="${dest.jar}/ApacheJMeter_monitors.jar">
<fileset dir="${build.monitor.model}" includes="**/*.class" />
<fileset dir="${build.monitor.components}" includes="**/*.class" />
</jar>
<!-- jms -->
<!-- Ensure that build dir exists, even if JMS has not been built -->
<mkdir dir="${build.jms}"/>
<jar jarfile="${dest.jar}/ApacheJMeter_jms.jar">
<fileset dir="${build.jms}" includes="**/*.class" />
<fileset dir="${src.jms}" includes="**/*.properties" />
</jar>
<jar jarfile="${lib.dir}/htmlparser.jar" basedir="${build.htmlparser}"/>
<jar jarfile="${lib.dir}/jorphan.jar" basedir="${build.jorphan}"/>
</target>
<target name="install" depends="package" description="Install JMeter. (Compiles code and creates jars)">
<fixcrlf srcdir="." eol="lf" includes="**/jmeter,**/jmeter-server,**/jmeter-report"/>
</target>
<target name="all" depends="clean,install"
description="Default: build from source. Does not create docs."/>
<target name="install-examples" depends="compile-examples" description="Build and installs the example components.">
<jar jarfile="${dest.jar}/ApacheJMeter_examples.jar">
<fileset dir="${build.examples}" includes="**/*.class" />
<fileset dir="${src.examples}" includes="**/*.properties" />
</jar>
</target>
<!--
N.B. This target is used by the "dist" target, which is set up as the Gump target.
Any libraries in this list need also to be set up in the Gump file:
projects/jakarta-jmeter.xml
-->
<target name="assume-libs-present">
<!-- Show the build version in gump logs -->
<echo>Version $Revision$ Last updated: $Date$</echo>
<!-- try to avoid Gump classpath complaint -->
<mkdir dir="${lib.opt}"/>
<property name="assuming.libs.present" value="true"/>
<property name="jsse.present" value="assume"/>
<property name="javamail.complete" value="assume"/>
<property name="beanshell.present" value="assume"/>
<property name="bsf.present" value="assume"/>
<property name="jms.present" value="assume"/>
</target>
<!-- list of files needed for a binary distribution -->
<patternset id="dist.binaries">
<include name="LICENSE"/>
<include name="NOTICE"/>
<include name="README"/>
<include name="INSTALL"/>
<include name="${dest.jar.jmeter}/ApacheJMeter.jar"/>
<include name="${dest.jar.jmeter}/jmeter*"/>
<include name="${dest.jar.jmeter}/upgrade.properties"/>
<include name="${dest.jar.jmeter}/saveservice.properties"/>
<include name="${dest.jar.jmeter}/users.*"/>
<include name="${dest.jar.jmeter}/testfiles/**"/>
<include name="${dest.jar}/"/>
<include name="${dest.printable_docs}/**"/>
<include name="${extras.dir}/**"/>
<include name="${lib.dir}/jorphan.jar"/>
<include name="${lib.dir}/htmlparser.jar"/>
</patternset>
<!--
List of Unix executable files in the binary distribution
These need special handling to create the correct file mode
-->
<property name="dist.executables" value="${dest.jar.jmeter}/jmeter ${dest.jar.jmeter}/jmeter-server"/>
<patternset id="dist.sources">
<include name="LICENSE"/>
<include name="NOTICE"/>
<include name="README"/>
<include name="INSTALL"/>
<include name="${src.dir}/**"/>
<include name="${src.docs}/**"/>
<include name="build.*"/>
<include name="lcp.bat"/>
<include name="${dest.jar.jmeter}/jmeter*.bat"/>
<include name="${dest.jar.jmeter}/jmeter*.properties"/>
<include name="${dest.jar.jmeter}/log4j.conf"/>
<include name="${dest.jar.jmeter}/testfiles/**"/>
<include name="eclipse.classpath*"/>
</patternset>
<!-- Files to be included in full download -->
<patternset id="dist_bin_files">
<patternset refid="dist.binaries"/>
<patternset refid="external.jars"/>
<include name="${dest.printable_docs}/**"/>
<include name="${dest.docs}/**"/>
<exclude name="${dest.docs}/api/**"/>
</patternset>
<!-- TODO: find way to share images etc between the two document sets -->
<!-- Files to be included in source download -->
<patternset id="dist_src_files">
<!--patternset refid="external.jars"/-->
<patternset refid="dist.sources"/>
<include name="${dest.docs}/api/**"/>
</patternset>
<!-- Invoke with -Djmeter.version=m.n
N.B. Included in distribution target
-->
<target name="site"
depends="init-version,docs-site,docs-api,pack-site"
description="Build site documentation separately (see: distribution)"/>
<!-- Invoke with -Djmeter.version=m.n
Creates clean build and all documentation
Creates runtime and source distributions
Creates archives for updating web-site
-->
<target name="distribution"
depends="assume-libs-present,clean,install,test,_distribution"