forked from unicode-org/icu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
1977 lines (1716 loc) · 92.1 KB
/
build.xml
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
<!--
* © 2016 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html
*******************************************************************************
* Copyright (C) 1997-2016, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
-->
<project name="icu4j" default="jar" basedir="."
xmlns:ivy="antlib:org.apache.ivy.ant"
xmlns:jacoco="antlib:org.jacoco.ant">
<property file="build-local.properties"/>
<property file="build.properties"/>
<property name="shared.dir" value="main/shared"/>
<import file="${shared.dir}/build/common-targets.xml"/>
<property environment="env"/>
<!-- icu4j binaries -->
<property name="icu4j.jar.file" value="icu4j.jar"/>
<property name="icu4jtests.jar.file" value="icu4jtests.jar"/>
<property name="icu4j-charset.jar.file" value="icu4j-charset.jar"/>
<property name="icu4j-localespi.jar.file" value="icu4j-localespi.jar"/>
<property name="icu4jdemos.jar.file" value="icu4jdemos.jar"/>
<!-- icu4j API doc jar file -->
<property name="icu4jdocs.jar.file" value="icu4j-docs.jar"/>
<!-- icu4j src jar files -->
<property name="icu4j-src.jar.file" value="icu4j-src.jar"/>
<property name="icu4j-charset-src.jar.file" value="icu4j-charset-src.jar"/>
<property name="icu4j-localespi-src.jar.file" value="icu4j-localespi-src.jar"/>
<!-- icu4j source package archive files -->
<property name="icu4jsrc.zip.file" value="icu4j.zip"/>
<property name="icu4jsrc.tgz.file" value="icu4j.tgz"/>
<!-- icu4j versioned release files -->
<property name="icu4j.jar.versioned.file" value="icu4j-${release.file.ver}.jar"/>
<property name="icu4j-charset.jar.versioned.file" value="icu4j-charset-${release.file.ver}.jar"/>
<property name="icu4j-localespi.jar.versioned.file" value="icu4j-localespi-${release.file.ver}.jar"/>
<property name="icu4j-src.jar.versioned.file" value="icu4j-${release.file.ver}-src.jar"/>
<property name="icu4j-charset-src.jar.versioned.file" value="icu4j-charset-${release.file.ver}-src.jar"/>
<property name="icu4j-localespi-src.jar.versioned.file" value="icu4j-localespi-${release.file.ver}-src.jar"/>
<property name="icu4jdocs.jar.versioned.file" value="icu4j-${release.file.ver}-docs.jar"/>
<!-- <property name="icu4jsrc.zip.versioned.file" value="icu4j-${release.file.ver}.zip"/> -->
<property name="icu4jsrc.tgz.versioned.file" value="icu4j-${release.file.ver}.tgz"/>
<!-- API doc -->
<property name="icu4j.api.doc.title" value="ICU4J ${api.doc.version} API Specification"/>
<property name="icu4j.api.doc.window.title" value="ICU4J ${api.doc.version}"/>
<property name="icu4j.api.doc.header" value="ICU4J ${api.doc.version}"/>
<property name="icu4j.api.doc.jdk.link" value="https://docs.oracle.com/javase/8/docs/api/"/>
<property name="icu4j.api.doc.copyright.footer" value="<font size=-1>Copyright © 2016 Unicode, Inc. and others.</font>"/>
<!-- API docs for maven repo -->
<property name="icu4jdocs.main.jar.versioned.file" value="icu4j-${release.file.ver}-docs.jar"/>
<property name="icu4j.main.api.doc.title" value="ICU4J (com.ibm.icu:icu4j) ${api.doc.version} API Specification"/>
<property name="icu4j.main.api.doc.window.title" value="ICU4J (com.ibm.icu:icu4j) ${api.doc.version}"/>
<property name="icu4j.main.api.doc.header" value="ICU4J (com.ibm.icu:icu4j) ${api.doc.version}"/>
<property name="icu4jdocs.charset.jar.versioned.file" value="icu4j-charset-${release.file.ver}-docs.jar"/>
<property name="icu4j.charset.api.doc.title" value="ICU4J Charset (com.ibm.icu:icu4j-charset) ${api.doc.version} API Specification"/>
<property name="icu4j.charset.api.doc.window.title" value="ICU4J Charset (com.ibm.icu:icu4j-charset) ${api.doc.version}"/>
<property name="icu4j.charset.api.doc.header" value="ICU4J Charset (com.ibm.icu:icu4j-charset) ${api.doc.version}"/>
<property name="icu4jdocs.localespi.jar.versioned.file" value="icu4j-localespi-${release.file.ver}-docs.jar"/>
<property name="icu4j.locspi.api.doc.title" value="ICU4J Locale SPI Provider (com.ibm.icu:icu4j-localespi) ${api.doc.version} API Specification"/>
<property name="icu4j.locspi.api.doc.window.title" value="ICU4J Locale SPI Provider (com.ibm.icu:icu4j-localespi) ${api.doc.version}"/>
<property name="icu4j.locspi.api.doc.header" value="ICU4J Locale SPI Provider (com.ibm.icu:icu4j-localespi) ${api.doc.version}"/>
<!-- directories -->
<property name="release.dir" value="release"/>
<property name="doc.dir" value="doc"/>
<property name="maven.doc.base.dir" value="${out.dir}/mavendoc"/>
<property name="cldr.util.out.dir" value="${out.dir}/cldr_util"/>
<property name="cldr.release.dir" value="release_cldr"/>
<property name="external-jars" value="lib"/>
<!-- Java version check -->
<condition property="is.java7">
<matches string="${java.version}" pattern="1\.7\.\d.*"/>
</condition>
<condition property="is.java8">
<matches string="${java.version}" pattern="1\.8\.\d.*"/>
</condition>
<condition property="is.java9">
<matches string="${java.version}" pattern="9((-.|\.\d).*)?"/>
</condition>
<condition property="is.java10">
<matches string="${java.version}" pattern="10((-.|\.\d).*)?"/>
</condition>
<condition property="is.java11">
<matches string="${java.version}" pattern="11((-.|\.\d).*)?"/>
</condition>
<condition property="is.java12">
<matches string="${java.version}" pattern="12((-.|\.\d).*)?"/>
</condition>
<condition property="is.java8.plus">
<or>
<isset property="is.java8"/>
<isset property="is.java9"/>
<isset property="is.java10"/>
<isset property="is.java11"/>
<isset property="is.java12"/>
</or>
</condition>
<condition property="is.java7.plus">
<or>
<isset property="is.java7"/>
<isset property="is.java8.plus"/>
</or>
</condition>
<fail message="The JDK version is too old or unknown.">
<condition>
<not>
<isset property="is.java7.plus"/>
</not>
</condition>
</fail>
<!-- Build environment info -->
<property name="env.COMPUTERNAME" value="${env.HOSTNAME}"/>
<target name="info" description="Display the build environment information">
<echo message="----- Build Environment Information -------------------"/>
<echo message="Java Home: ${java.home}"/>
<echo message="Java Version: ${java.version}"/>
<echo message="Ant Home: ${ant.home}"/>
<echo message="Ant Version: ${ant.version}"/>
<echo message="OS: ${os.name}"/>
<echo message="OS Version: ${os.version}"/>
<echo message="OS Arch: ${os.arch}"/>
<echo message="Host: ${env.COMPUTERNAME}"/>
<echo message="-------------------------------------------------------"/>
</target>
<target name="clean" description="Clean up build outputs">
<ant dir="${icu4j.core.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.collate.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.charset.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.currdata.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.langdata.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.localespi.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.regiondata.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.translit.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.test-framework.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.core-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.collate-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.charset-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.localespi-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.packaging-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.translit-tests.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.build-tools.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.tools.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.demos.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.samples.dir}" target="clean" inheritAll="false"/>
<ant dir="${icu4j.perf-tests.dir}" target="clean" inheritAll="false"/>
<!-- delete all .jar files root directory -->
<delete>
<fileset dir="." includes="icu4j*.jar"/>
</delete>
<delete dir="${release.dir}"/>
<delete dir="${doc.dir}"/>
<delete dir="${out.dir}"/>
<delete dir="${module.dir}"/>
<delete dir="${cldr.release.dir}"/>
</target>
<target name="ivy-clean">
<ivy:cleancache/>
</target>
<!-- Ivy Targets -->
<property name="ivy.install.version" value="2.5.0" />
<condition property="ivy.home" value="${env.IVY_HOME}">
<isset property="env.IVY_HOME" />
</condition>
<property name="ivy.home" value="${user.home}/.ant" />
<property name="ivy.jar.dir" value="${ivy.home}/lib" />
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
<target name="download-ivy" unless="offline">
<mkdir dir="${ivy.jar.dir}"/>
<!-- download Ivy from web site so that it can be used even without any special installation -->
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
<target name="init-ivy" depends="download-ivy">
<!-- try to load ivy here from ivy home, in case the user has not already dropped
it into ant's lib dir (note that the latter copy will always take precedence).
We will not fail as long as local lib dir exists (it may be empty) and
ivy is in at least one of ant's lib dir or the local lib dir. -->
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
</target>
<target name="test-init-junit-dependency" depends="init-ivy">
<ivy:retrieve/>
</target>
<target name="init" depends="test-init-junit-dependency"
description="Initialize the environment for build and test. May require internet access."/>
<target name="_classifytests">
<condition property="testaction.run">
<isset property="testclass"/>
</condition>
<condition property="testaction.class">
<and>
<isset property="testclass"/>
<not><isset property="testnames"/></not>
</and>
</condition>
<condition property="testaction.tests">
<and>
<isset property="testclass"/>
<isset property="testnames"/>
</and>
</condition>
<condition property="testaction.error">
<and>
<not><isset property="testclass"/></not>
<isset property="testnames"/>
</and>
</condition>
<condition property="testaction.all">
<and>
<not><isset property="testclass"/></not>
<not><isset property="testnames"/></not>
</and>
</condition>
</target>
<target name="checkTest" depends="_classifytests, tests, runallTests, noTests" if="testaction.run" description="Run only the specified tests of the specified test class or, if no arguments are given, the standard ICU4J test suite.">
<sequential>
<delete dir="${junit.out.dir}/checkTest"/>
<mkdir dir="${junit.out.dir}/checkTest"/>
<junit printsummary="yes" fork="yes">
<jvmarg value="-ea"/>
<jvmarg value="-Djava.awt.headless=true"/>
<jvmarg value="-DICU.exhaustive=10"/>
<classpath>
<path refid="junit.jars"/>
<path refid="junit.icu.jars"/>
</classpath>
<test name="${testclass}" todir="${junit.out.dir}/checkTest" outfile="checkTest" methods="${testnames}" if="testaction.tests">
<formatter type="xml"/>
</test>
<test name="${testclass}" todir="${junit.out.dir}/checkTest" outfile="checkTest" if="testaction.class">
<formatter type="xml"/>
</test>
</junit>
<junitreport todir="${junit.out.dir}/checkTest">
<fileset dir="${junit.out.dir}/checkTest">
<include name="checkTest.xml"/>
</fileset>
<report format="frames" todir="${junit.out.dir}/checkTest/html"/>
</junitreport>
<fail message="test failed: @{testdir}" if="@{failure-status}" />
</sequential>
</target>
<target name="runallTests" if="testaction.all">
<antcall target="allTests"/>
</target>
<target name="allTests" depends="check"/>
<target name="noTests" if="testaction.error">
<echo>Execute JUnit testing using -Dtestclass='class-name' -Dtestnames='test-name1>, test-name2, ...'</echo>
</target>
<!-- Junit Targets -->
<macrodef name="icu-junit">
<attribute name="test-name"/>
<attribute name="jvm-options" default=""/>
<attribute name="classpath" default="junit.icu.jars"/>
<attribute name="failure-status" default="ignore"/>
<element name="junit-fileset"/>
<element name="junit-parameters" optional="true"/>
<sequential>
<echo message="@{jvm-options}"/>
<!--set the property - if it was set before it won't override-->
<property name="user-jvm-options" value=""/>
<property name="internal-jvm-options" value=""/>
<delete dir="${junit.out.dir}/@{test-name}"/>
<mkdir dir="${junit.out.dir}/@{test-name}"/>
<junit fork="yes" forkmode="once" printsummary="yes" haltonfailure="no"
failureproperty="@{failure-status}" tempdir="${junit.out.dir}">
<jvmarg value="-Xss4m"/>
<jvmarg value="-ea"/>
<jvmarg value="-Djava.awt.headless=true"/>
<jvmarg line="${user-jvm-options}"/>
<jvmarg line="@{jvm-options}"/>
<jvmarg line="${internal-jvm-options}"/>
<junit-parameters/>
<classpath>
<path refid="junit.jars"/>
<path refid="@{classpath}"/>
</classpath>
<formatter type="plain"/>
<formatter type="xml"/>
<batchtest todir="${junit.out.dir}/@{test-name}">
<junit-fileset/>
</batchtest>
</junit>
<junitreport tofile="@{test-name}-TestSuite.xml" todir="${junit.out.dir}/@{test-name}">
<fileset dir="${junit.out.dir}/@{test-name}">
<include name="*.xml"/>
</fileset>
<report format="frames" todir="${junit.out.dir}/@{test-name}/html"/>
</junitreport>
<fail message="test failed: @{test-name}" if="@{failure-status}" />
</sequential>
</macrodef>
<property name="junit.out.dir" value="${out.dir}/junit-results"/>
<property name="junit.core.jar" value="${external-jars}/junit-4.12.jar"/>
<property name="junit.hamcrest.jar" value="${external-jars}/hamcrest-core-1.3.jar"/>
<property name="junit.junitparams.jar" value="${external-jars}/JUnitParams-1.0.5.jar"/>
<path id="junit.jars">
<pathelement path="${junit.core.jar}"/>
<pathelement path="${junit.hamcrest.jar}"/>
<pathelement path="${junit.junitparams.jar}"/>
</path>
<path id="junit.icu.jars">
<pathelement location="${icu4j.core.jar}"/>
<pathelement location="${icu4j.collate.jar}"/>
<pathelement location="${icu4j.charset.jar}"/>
<pathelement location="${icu4j.currdata.jar}"/>
<pathelement location="${icu4j.langdata.jar}"/>
<pathelement location="${icu4j.regiondata.jar}"/>
<pathelement location="${icu4j.translit.jar}"/>
<pathelement location="${icu4j.test-framework.jar}"/>
<pathelement location="${icu4j.tools.jar}"/>
<pathelement location="${icu4j.core-tests.jar}"/>
<pathelement location="${icu4j.collate-tests.jar}"/>
<pathelement location="${icu4j.charset-tests.jar}"/>
<pathelement location="${icu4j.translit-tests.jar}"/>
<pathelement location="${icu4j.localespi-tests.jar}"/>
<pathelement location="${icu4j.packaging-tests.jar}"/>
<pathelement location="${icu4j.regiondata.jar}"/>
</path>
<path id="junit.icu.release.jars">
<pathelement location="${icu4j.jar.file}"/>
<pathelement location="${icu4j.charset.jar}"/>
<pathelement location="${icu4jtests.jar.file}"/>
</path>
<path id="junit.icu.localespi-tests.jars">
<pathelement location="${icu4j.test-framework.jar}"/>
<pathelement location="${icu4j.localespi-tests.jar}"/>
</path>
<!--Class names that will be included/excluded as tests-->
<patternset id="test-classes-patternset">
<include name="**/*Test*"/>
<exclude name="**/*Fmwk*"/>
<exclude name="**/*TestUtility*"/>
<exclude name="**/*TestHelper*"/>
<exclude name="**/*TestCase*"/>
<exclude name="**/*TestData*"/>
<exclude name="**/*TestSample*"/>
<exclude name="**/*$*.class"/>
<exclude name="**/data/**"/>
<exclude name="com/ibm/icu/dev/test/*"/>
</patternset>
<!--Class names that will be included/excluded as tests for time zone check-->
<patternset id="timeZoneCheck-patternset">
<include name="**/TimeZoneFormatTest*"/>
<exclude name="**/*$*.class"/>
</patternset>
<!--Class names that will be included/excluded as tests for packaging check-->
<patternset id="packagingCheck-patternset">
<include name="**/TestLocaleNamePackaging*"/>
<exclude name="**/*$*.class"/>
</patternset>
<!--Class names that will be included/excluded as tests for locale SPI check-->
<patternset id="localespiCheck-patternset">
<include name="**/*Test*"/>
<exclude name="com/ibm/icu/dev/test/localespi/TestUtil.*"/>
<exclude name="**/*$*.class"/>
</patternset>
<!-- meta build targets -->
<target name="all" depends="info, main, tests, build-tools, tools, demos, samples, perf-tests, jar, docs" description="Build all primary targets"/>
<target name="main" depends="info, core, collate, charset, currdata, langdata, regiondata, translit, localespi" description="Build ICU4J runtime library classes"/>
<target name="tests" depends="info, core-tests, charset-tests, collate-tests, packaging-tests, translit-tests, localespi-tests" description="Build ICU4J test classes"/>
<target name="secure" depends="icu4jJar" description="(Deprecated)Build ICU4J API and test classes for running the ICU4J test suite with Java security manager enabled"/>
<!-- Check to see if JVM_OPTIONS enviroment variable is set. This can be use to set the heap size. -->
<property name="env.JVM_OPTIONS" value=""/>
<property name="jvm_options" value="${env.JVM_OPTIONS}"/>
<target name="_check">
<parallel>
<antcall target="_charsetCheck"/>
<antcall target="_collateCheck"/>
<antcall target="_coreCheck"/>
<antcall target="_translitCheck"/>
</parallel>
</target>
<target name="exhaustiveCheck" description="Run the standard ICU4J test suite in exhaustive mode">
<antcall target="check">
<param name="internal-jvm-options" value="-DICU.exhaustive=10"/>
</antcall>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="check" depends="main, tests" description="Run the standard ICU4J test suite">
<antcall target="_check"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="runTest" description="Run the standard ICU4J test suite without calling any other build targets">
<antcall target="_check"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="releaseJarCheck" depends="jar, icu4jtestsJar" description="Run the ICU4J test suite with ICU4J release jar files">
<icu-junit test-name="releaseJarCheck"
classpath="junit.icu.release.jars"
failure-status="icu-junit-failure">
<junit-fileset>
<zipfileset src="${icu4jtests.jar.file}">
<patternset refid="test-classes-patternset"/>
</zipfileset>
</junit-fileset>
</icu-junit>
<fail message="test failed - icu4j/icu4j-charset" if="icu-junit-failure" />
<property name="test.java.ext.dir" value="${out.dir}/localespi-ext"/>
<delete dir="${test.java.ext.dir}"/>
<mkdir dir="${test.java.ext.dir}"/>
<copy file="${icu4j-localespi.jar.file}" todir="${test.java.ext.dir}"/>
<copy file="${icu4j.jar.file}" todir="${test.java.ext.dir}"/>
<icu-junit test-name="releaseJarCheck-localespi"
classpath="junit.icu.localespi-tests.jars"
jvm-options="-Djava.ext.dirs=${test.java.ext.dir}${path.separator}${java.ext.dirs}"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.localespi-tests.dir}/${bin.dir}">
<patternset refid="localespiCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
<fail message="test failed - icu4j-localespi" if="icu-junit-failure" />
</target>
<target name="timeZoneCheck" depends="main, tests" description="Run the complete test for TimeZoneRoundTripAll">
<icu-junit test-name="timeZoneCheck"
jvm-options="-DTimeZoneRoundTripAll=true"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.core-tests.dir}/${bin.dir}">
<patternset refid="timeZoneCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="jdktzCheck" description="Run the standard ICU4J test suite with JDK TimeZone">
<antcall target="check">
<param name="internal-jvm-options" value="-Dcom.ibm.icu.util.TimeZone.DefaultTimeZoneType=JDK"/>
</antcall>
</target>
<path id="junit.icu.jars.PackagingCheckNoLangData">
<pathelement location="${icu4j.core.jar}"/>
<pathelement location="${icu4j.charset.jar}"/>
<pathelement location="${icu4j.test-framework.jar}"/>
<pathelement location="${icu4j.packaging-tests.jar}"/>
<pathelement location="${icu4j.regiondata.jar}"/>
</path>
<path id="junit.icu.jars.PackagingCheckNoRegionData">
<pathelement location="${icu4j.core.jar}"/>
<pathelement location="${icu4j.charset.jar}"/>
<pathelement location="${icu4j.test-framework.jar}"/>
<pathelement location="${icu4j.packaging-tests.jar}"/>
<pathelement location="${icu4j.langdata.jar}"/>
</path>
<path id="junit.icu.jars.PackagingCheckNoLangNorRegionData">
<pathelement location="${icu4j.core.jar}"/>
<pathelement location="${icu4j.charset.jar}"/>
<pathelement location="${icu4j.test-framework.jar}"/>
<pathelement location="${icu4j.packaging-tests.jar}"/>
</path>
<target name="_packagingCheckNoLangData">
<!-- region data but no language data -->
<icu-junit test-name="packaging-NoLangData"
classpath="junit.icu.jars.PackagingCheckNoLangData"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.packaging-tests.dir}/${bin.dir}">
<patternset refid="packagingCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="_packagingCheckNoRegionData">
<!-- language data but no region data -->
<icu-junit test-name="packaging-NoRegionData"
classpath="junit.icu.jars.PackagingCheckNoRegionData"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.packaging-tests.dir}/${bin.dir}">
<patternset refid="packagingCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="_packagingCheckNoLangNorRegionData">
<!-- neither region nor language data -->
<icu-junit test-name="packaging-NoLangNorRegionData"
classpath="junit.icu.jars.PackagingCheckNoLangNorRegionData"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.packaging-tests.dir}/${bin.dir}">
<patternset refid="packagingCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="packagingCheck" depends="info, core, langdata, regiondata, packaging-tests" description="Run packaging tests">
<antcall target="_packagingCheckNoLangData"/>
<antcall target="_packagingCheckNoRegionData"/>
<antcall target="_packagingCheckNoLangNorRegionData"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="_coreCheck">
<icu-junit test-name="core" failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.core-tests.dir}/${bin.dir}">
<patternset refid="test-classes-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="coreCheck" depends="info, core, currdata, langdata, regiondata, core-tests" description="Run only the core tests">
<antcall target="_coreCheck"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="_charsetCheck">
<icu-junit test-name="charset" failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.charset-tests.dir}/${bin.dir}">
<patternset refid="test-classes-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="charsetCheck" depends="info, core, charset, currdata, langdata, regiondata, core-tests, charset-tests" description="Run only the charset tests">
<antcall target="_charsetCheck"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="_collateCheck">
<icu-junit test-name="collate" failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.collate-tests.dir}/${bin.dir}">
<patternset refid="test-classes-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="collateCheck" depends="info, core, collate, currdata, langdata, regiondata, core-tests, collate-tests" description="Run only the collation tests">
<antcall target="_collateCheck"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="_translitCheck">
<icu-junit test-name="translit" failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.translit-tests.dir}/${bin.dir}">
<patternset refid="test-classes-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="translitCheck" depends="info, core, translit, translit-tests" description="Run the ICU4J Translit test suite">
<antcall target="_translitCheck"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="_localespiCheck">
<icu-junit test-name="localespi"
classpath="junit.icu.localespi-tests.jars"
jvm-options="-Djava.ext.dirs=${icu4j.core.dir}/${jar.dir}${path.separator}${icu4j.localespi.dir}/${jar.dir}${path.separator}${icu4j.collate.dir}/${jar.dir}${path.separator}${icu4j.currdata.dir}/${jar.dir}${path.separator}${icu4j.langdata.dir}/${jar.dir}${path.separator}${icu4j.regiondata.dir}/${jar.dir}${path.separator}${java.ext.dirs}"
failure-status="icu-junit-failure">
<junit-fileset>
<fileset dir="${icu4j.localespi-tests.dir}/${bin.dir}">
<patternset refid="localespiCheck-patternset"/>
</fileset>
</junit-fileset>
</icu-junit>
</target>
<target name="localespiCheck" depends="info, localespi, localespi-tests" description="Run the ICU4J Locale SPI test suite">
<antcall target="_localespiCheck"/>
<fail message="test failed" if="icu-junit-failure" />
</target>
<target name="secureCheck" depends="jar, icu4jtestsJar" description="Run the ICU4J test suite with Java security manager enabled">
<icu-junit test-name="secureCheck"
classpath="junit.icu.release.jars"
jvm-options="-Djava.security.manager -Djava.security.policy=${user.dir}/${shared.dir}/data/security.policy"
failure-status="icu-junit-failure">
<junit-fileset>
<zipfileset src="${icu4jtests.jar.file}">
<patternset refid="test-classes-patternset"/>
</zipfileset>
</junit-fileset>
</icu-junit>
<fail message="test failed" if="icu-junit-failure" />
</target>
<!-- jar targets -->
<target name="jar" depends="icu4jJar, charset, localespi" description="Build ICU4J runtime library jar files">
<copy file="${icu4j.charset.jar}" tofile="${icu4j-charset.jar.file}"/>
<copy file="${icu4j.localespi.jar}" tofile="${icu4j-localespi.jar.file}" failonerror="false"/>
</target>
<target name="icu4jJar" depends="info, core, collate, currdata, langdata, regiondata, translit" description="Build ICU4J all-in-one core jar">
<mkdir dir="${out.dir}"/>
<!-- manifest -->
<copy file="manifest.stub" todir="${out.dir}">
<filterset>
<filter token="SPECVERSION" value="${jar.spec.version}"/>
<filter token="IMPLVERSION" value="${jar.impl.version}"/>
<filter token="COPYRIGHT" value="${jar.copyright.info}"/>
<filter token="EXECENV" value="${jar.exec.env}"/>
</filterset>
</copy>
<!-- jar -->
<jar jarfile="${icu4j.jar.file}"
compress="true"
manifest="${out.dir}/manifest.stub">
<fileset dir="${icu4j.core.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.collate.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.currdata.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.langdata.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.regiondata.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.translit.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${shared.dir}/licenses">
<include name="LICENSE"/>
</fileset>
</jar>
</target>
<target name="icu4jSrcJar" description="Build icu4j-src.jar">
<jar jarfile="${icu4j-src.jar.file}"
compress="true">
<fileset dir="${icu4j.core.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${icu4j.collate.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${icu4j.currdata.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${icu4j.langdata.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${icu4j.regiondata.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${icu4j.translit.dir}/${src.dir}" includes="**/*.java"/>
<fileset dir="${shared.dir}/licenses">
<include name="LICENSE"/>
</fileset>
</jar>
</target>
<target name="icu4jtestsJar" depends="info, tests, tools" description="Build ICU4J all-in-one test jar">
<jar jarfile="${icu4jtests.jar.file}"
compress="true">
<fileset dir="${icu4j.test-framework.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.core-tests.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.collate-tests.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.translit-tests.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.charset-tests.dir}/${bin.dir}" includes="**/*"/>
<fileset dir="${icu4j.tools.dir}/${bin.dir}" includes="com/ibm/icu/dev/tool/locale/**"/>
</jar>
</target>
<target name="jarDemos" depends="icu4jJar, demos" description="Build ICU4J demo jar file">
<copy file="${icu4j.demos.jar}" tofile="${icu4jdemos.jar.file}"/>
</target>
<!-- release targets -->
<target name="_check_config_for_release" depends="_checkJCite">
<condition property="release.build.config.ok">
<and>
<isset property="is.java8"/>
<isset property="java7.bootclasspath"/>
<isset property="jcite.libs"/>
</and>
</condition>
</target>
<target name="_verify_config_for_release" depends="_check_config_for_release" unless="release.build.config.ok">
<condition property="disp.is.java8" value="${java.version}" else="${java.version} - Must be 1.8!">
<isset property="is.java8"/>
</condition>
<condition property="disp.java7.bootclasspath" value="${java7.bootclasspath}" else="Not Defined!">
<isset property="java7.bootclasspath"/>
</condition>
<condition property="disp.jcite.libs" value="${jcite.libs}" else="Not Defined!">
<isset property="jcite.libs"/>
</condition>
<echo message="################################################################"/>
<echo message="[WARNING] Insufficient Build Configuration for ICU4J Release"/>
<echo message="JDK 8 Tools: ${disp.is.java8}"/>
<echo message="JRE 7 System Library Path: ${disp.java7.bootclasspath}"/>
<echo message="JCite Library Path: ${disp.jcite.libs}"/>
<echo message="################################################################"/>
</target>
<target name="_final_release_check" depends="_verify_config_for_release">
<fail message="Insufficient Build Configuration for ICU4J Release" unless="release.build.config.ok"/>
<fail message="Maven Ant Tasks are required to publish libraries. Set maven-ant-tasks.jar property. Maven Ant Tasks URL: http://maven.apache.org/ant-tasks/" unless="maven-ant-tasks.jar"/>
<condition property="no_maven-ant-tasks">
<available file="${maven-ant-tasks.jar}"/>
</condition>
<fail message="Maven Ant Tasks not found at ${maven-ant-tasks.jar}" unless="no_maven-ant-tasks"/>
</target>
<!--
The ant target releaseFinal is used for ICU official release.
This target builds ICU4J library jars, source jars and API document jars.
Also, this target publishes ICU4J artifacts to OSSRH staging repository.
Prerequisites
1) Apache Maven Ant tasks - http://maven.apache.org/ant-tasks
Note: Apache Maven Ant tasks was already deprecated. You can still
download the latest version from Maven Central
http://central.maven.org/maven2/org/apache/maven/maven-ant-tasks/2.1.3/maven-ant-tasks-2.1.3.jar
TODO: Because mavne-ant-tasks was already deprecated and no longer maintained,
we should look for alternative solution.
2) GnuPG
3) Put build-local.properties to specify followings
maven-ant-tasks.jar = [location of maven ant tasks jar file]
gpg.user = ICU Project
4) Maven configuration file ~/.m2/settings.xml
<settings>
<servers>
<server>
<id>icu4j-releases</id>
<username>[oss.sonatype.org Nexus account ID]</username>
<password>[oss.sonatype.org Nexus account password]</password>
</server>
<server>
<id>icu4j-snapshots</id>
<username>[oss.sonatype.org Nexus account ID]</username>
<password>[oss.sonatype.org Nexus account password]</password>
</server>
</servers>
</settings>
-->
<target name="releaseFinal" depends="info, _final_release_check, releaseVer, docsMaven"
description="Build all ICU4J release files for distribution and upload them to the OSSRH staging repository">
<property name="maven.pom.dir" value="maven"/>
<property name="maven.icu4j.release.dir" value="${release.dir}/maven/icu4j"/>
<property name="maven.charset.release.dir" value="${release.dir}/maven/icu4j-charset"/>
<property name="maven.localespi.release.dir" value="${release.dir}/maven/icu4j-localespi"/>
<property name="maven.icu4j.jar.file" value="icu4j-${maven.pom.ver}.jar"/>
<property name="maven.icu4j.src.jar.file" value="icu4j-${maven.pom.ver}-sources.jar"/>
<property name="maven.icu4j.doc.jar.file" value="icu4j-${maven.pom.ver}-javadoc.jar"/>
<property name="maven.charset.jar.file" value="icu4j-charset-${maven.pom.ver}.jar"/>
<property name="maven.charset.src.jar.file" value="icu4j-charset-${maven.pom.ver}-sources.jar"/>
<property name="maven.charset.doc.jar.file" value="icu4j-charset-${maven.pom.ver}-javadoc.jar"/>
<property name="maven.localespi.jar.file" value="icu4j-localespi-${maven.pom.ver}.jar"/>
<property name="maven.localespi.src.jar.file" value="icu4j-localespi-${maven.pom.ver}-sources.jar"/>
<property name="maven.localespi.doc.jar.file" value="icu4j-localespi-${maven.pom.ver}-javadoc.jar"/>
<delete dir="${release.dir}/maven"/>
<mkdir dir="${maven.icu4j.release.dir}"/>
<mkdir dir="${maven.charset.release.dir}"/>
<mkdir dir="${maven.localespi.release.dir}"/>
<!-- copy pom.xml with version -->
<copy file="${maven.pom.dir}/icu4j/pom.xml" todir="${maven.icu4j.release.dir}">
<filterset>
<filter token="POMVERSION" value="${maven.pom.ver}"/>
</filterset>
</copy>
<copy file="${maven.pom.dir}/icu4j-charset/pom.xml" todir="${maven.charset.release.dir}">
<filterset>
<filter token="POMVERSION" value="${maven.pom.ver}"/>
</filterset>
</copy>
<copy file="${maven.pom.dir}/icu4j-localespi/pom.xml" todir="${maven.localespi.release.dir}">
<filterset>
<filter token="POMVERSION" value="${maven.pom.ver}"/>
</filterset>
</copy>
<!-- copy ICU release binaries and source archive to the maven release directory -->
<copy file="${release.dir}/${icu4j.jar.versioned.file}"
tofile="${maven.icu4j.release.dir}/${maven.icu4j.jar.file}"/>
<copy file="${release.dir}/${icu4j-charset.jar.versioned.file}"
tofile="${maven.charset.release.dir}/${maven.charset.jar.file}"/>
<copy file="${release.dir}/${icu4j-localespi.jar.versioned.file}"
tofile="${maven.localespi.release.dir}/${maven.localespi.jar.file}"/>
<copy file="${release.dir}/${icu4j-src.jar.versioned.file}"
tofile="${maven.icu4j.release.dir}/${maven.icu4j.src.jar.file}"/>
<copy file="${release.dir}/${icu4j-charset-src.jar.versioned.file}"
tofile="${maven.charset.release.dir}/${maven.charset.src.jar.file}"/>
<copy file="${release.dir}/${icu4j-localespi-src.jar.versioned.file}"
tofile="${maven.localespi.release.dir}/${maven.localespi.src.jar.file}"/>
<!-- javadoc jar for maven release -->
<jar jarfile="${maven.icu4j.release.dir}/${maven.icu4j.doc.jar.file}"
compress="true"
basedir="${maven.doc.base.dir}/icu4j"/>
<jar jarfile="${maven.charset.release.dir}/${maven.charset.doc.jar.file}"
compress="true"
basedir="${maven.doc.base.dir}/charset"/>
<jar jarfile="${maven.localespi.release.dir}/${maven.localespi.doc.jar.file}"
compress="true"
basedir="${maven.doc.base.dir}/localespi"/>
<!-- sign release files-->
<macrodef name="gpg">
<attribute name="file"/>
<sequential>
<delete file="@{file}.asc" failonerror="false"/>
<exec executable="gpg">
<arg value="-u"/>
<arg value="${gpg.user}"/>
<arg value="-ab"/>
<arg value="-o"/>
<arg value="@{file}.asc"/>
<arg value="@{file}"/>
</exec>
</sequential>
</macrodef>
<gpg file="${maven.icu4j.release.dir}/pom.xml"/>
<gpg file="${maven.icu4j.release.dir}/${maven.icu4j.jar.file}"/>
<gpg file="${maven.icu4j.release.dir}/${maven.icu4j.src.jar.file}"/>
<gpg file="${maven.icu4j.release.dir}/${maven.icu4j.doc.jar.file}"/>
<gpg file="${maven.charset.release.dir}/pom.xml"/>
<gpg file="${maven.charset.release.dir}/${maven.charset.jar.file}"/>
<gpg file="${maven.charset.release.dir}/${maven.charset.src.jar.file}"/>
<gpg file="${maven.charset.release.dir}/${maven.charset.doc.jar.file}"/>
<gpg file="${maven.localespi.release.dir}/pom.xml"/>
<gpg file="${maven.localespi.release.dir}/${maven.localespi.jar.file}"/>
<gpg file="${maven.localespi.release.dir}/${maven.localespi.src.jar.file}"/>
<gpg file="${maven.localespi.release.dir}/${maven.localespi.doc.jar.file}"/>
<!-- deploy ICU4J artifacts to the OSSRH staging repository -->
<path id="maven-ant-tasks.classpath" path="${maven-ant-tasks.jar}"/>
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant"
classpathref="maven-ant-tasks.classpath"/>
<deploy xmlns="urn:maven-artifact-ant" file="${maven.icu4j.release.dir}/${maven.icu4j.jar.file}">
<pom file="${maven.icu4j.release.dir}/pom.xml"/>
<attach file="${maven.icu4j.release.dir}/pom.xml.asc" type="pom.asc"/>
<attach file="${maven.icu4j.release.dir}/${maven.icu4j.jar.file}.asc" type="jar.asc"/>
<attach file="${maven.icu4j.release.dir}/${maven.icu4j.src.jar.file}" classifier="sources"/>
<attach file="${maven.icu4j.release.dir}/${maven.icu4j.src.jar.file}.asc" classifier="sources" type="jar.asc"/>
<attach file="${maven.icu4j.release.dir}/${maven.icu4j.doc.jar.file}" classifier="javadoc"/>
<attach file="${maven.icu4j.release.dir}/${maven.icu4j.doc.jar.file}.asc" classifier="javadoc" type="jar.asc"/>
</deploy>
<deploy xmlns="urn:maven-artifact-ant" file="${maven.charset.release.dir}/${maven.charset.jar.file}">
<pom file="${maven.charset.release.dir}/pom.xml"/>
<attach file="${maven.charset.release.dir}/pom.xml.asc" type="pom.asc"/>
<attach file="${maven.charset.release.dir}/${maven.charset.jar.file}.asc" type="jar.asc"/>
<attach file="${maven.charset.release.dir}/${maven.charset.src.jar.file}" classifier="sources"/>
<attach file="${maven.charset.release.dir}/${maven.charset.src.jar.file}.asc" classifier="sources" type="jar.asc"/>
<attach file="${maven.charset.release.dir}/${maven.charset.doc.jar.file}" classifier="javadoc"/>
<attach file="${maven.charset.release.dir}/${maven.charset.doc.jar.file}.asc" classifier="javadoc" type="jar.asc"/>
</deploy>
<deploy xmlns="urn:maven-artifact-ant" file="${maven.localespi.release.dir}/${maven.localespi.jar.file}">
<pom file="${maven.localespi.release.dir}/pom.xml"/>
<attach file="${maven.localespi.release.dir}/pom.xml.asc" type="pom.asc"/>
<attach file="${maven.localespi.release.dir}/${maven.localespi.jar.file}.asc" type="jar.asc"/>
<attach file="${maven.localespi.release.dir}/${maven.localespi.src.jar.file}" classifier="sources"/>
<attach file="${maven.localespi.release.dir}/${maven.localespi.src.jar.file}.asc" classifier="sources" type="jar.asc"/>
<attach file="${maven.localespi.release.dir}/${maven.localespi.doc.jar.file}" classifier="javadoc"/>
<attach file="${maven.localespi.release.dir}/${maven.localespi.doc.jar.file}.asc" classifier="javadoc" type="jar.asc"/>
</deploy>
</target>
<target name="releaseVer" depends="info, releaseBinaries, releaseJarCheck, releaseSrcJars, releaseDocs, releaseSourceArchiveTgz"
description="Build all ICU4J release files for distribution with versioned file names">
<!-- binaries -->
<move file="${release.dir}/${icu4j.jar.file}" tofile="${release.dir}/${icu4j.jar.versioned.file}"/>
<move file="${release.dir}/${icu4j-charset.jar.file}" tofile="${release.dir}/${icu4j-charset.jar.versioned.file}"/>
<move file="${release.dir}/${icu4j-localespi.jar.file}" tofile="${release.dir}/${icu4j-localespi.jar.versioned.file}"/>
<!-- source jars -->
<move file="${release.dir}/${icu4j-src.jar.file}" tofile="${release.dir}/${icu4j-src.jar.versioned.file}"/>
<move file="${release.dir}/${icu4j-charset-src.jar.file}" tofile="${release.dir}/${icu4j-charset-src.jar.versioned.file}"/>
<move file="${release.dir}/${icu4j-localespi-src.jar.file}" tofile="${release.dir}/${icu4j-localespi-src.jar.versioned.file}"/>
<!-- docs -->
<move file="${release.dir}/${icu4jdocs.jar.file}" tofile="${release.dir}/${icu4jdocs.jar.versioned.file}"/>
<!-- package archive -->
<move file="${release.dir}/${icu4jsrc.tgz.file}" tofile="${release.dir}/${icu4jsrc.tgz.versioned.file}"/>
<!-- md5 checksum file -->
<mkdir dir="${out.dir}/checksum"/>
<delete dir="${out.dir}/checksum" includes="**/*"/>
<checksum todir="${out.dir}/checksum" format="MD5SUM">
<fileset dir="${release.dir}">
<include name="*.jar"/>
<include name="*.tgz"/>
</fileset>
</checksum>
<concat destfile="${release.dir}/icu4j-${release.file.ver}.md5">
<fileset dir="${out.dir}/checksum" includes="*"/>
<filterchain>
<fixcrlf eol="lf"/>
</filterchain>
</concat>
<antcall target="_verify_config_for_release"/>
</target>
<target name="release" depends="info, releaseBinaries, releaseSrcJars, releaseDocs, releaseSourceArchiveTgz" description="Build all ICU4J release files for distribution">
<mkdir dir="${out.dir}/checksum"/>
<delete dir="${out.dir}/checksum" includes="**/*"/>
<checksum todir="${out.dir}/checksum" format="MD5SUM">
<fileset dir="${release.dir}">
<include name="*.jar"/>
<include name="*.tgz"/>
</fileset>
</checksum>