forked from pentaho/mondrian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subfloor.xml
2026 lines (1702 loc) · 82.7 KB
/
subfloor.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
<!--===========================================================================
Copyright (c) 2008-2009, Pentaho Engineering Team
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Pentaho Corporation nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY Pentaho Engineering Team ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
============================================================================-->
<!--===========================================================================
== SUBFLOOR ==
$Date: Wed Nov 6 16:13:57 UTC 2013 $
Project Home: https://github.com/pentaho/subfloor/
This file contains the default implementation of the ant tasks to
perform a build. This file should be included by the build.xml file
for your particular project. That build file should redefine any task
that is defined in subfloor.xml IF AND ONLY IF the function of the
task needs to be customized.
FORMATTING:
ALIGNMENT: indent=2 spaces and wrap lines longer than 120 chars
NAMING: targets intended for execution by a user are named single-word
or hyphenated. Internal targets use '.' notation.
TO GET STARTED with your project, you will need this file in
your project's root directory along with three additional files:
1. build.xml
2. build.properties
3. ivy_settings.xml
4. ivy.xml
Below are some templates:
=== build.xml
<project name="MyProject" basedir="." default="jar" xmlns:ivy="antlib:org.apache.ivy.ant" >
<description>
This build file is used to create the MyProject project and works with the subfloor.xml file.
</description>
<import file="subfloor.xml"/>
</project>
=== build.properties
project.revision=1.0-SNAPSHOT #the version of your project. This will appear in jar META-INF, dist artifact filenames and IVY revision metadata.
ivy.artifact.id=my-project #IVY metadata describing the name of the artifact
impl.title=My Project #English language version of your project name
============================================================================-->
<project name="subfloor" basedir="." default="default" xmlns:ivy="antlib:org.apache.ivy.ant">
<description>
-------------------------------------------------------------------------------
subfloor.xml provides tasks needed to perform a project build.
It is typically not used directly but imported by each project's build.xml
file. The build.xml file can override tasks when customization is required.
MAIN TARGETS
============
* clean / clean-all :
remove all artifacts of the build, clean-all adds the removal
of any library or jar dependencies downloaded as part of the build
* resolve :
download/refresh library or jar dependencies needed for the build (uses Apache IVY)
* compile :
run javac on the project's source
* jar :
creates a jar file
* dist :
creates all project distributables
* test :
runs JUnit tests from your project's test source
SPECIAL TARGETS
============
* publish-local :
builds a jar for your project and registers it with the local artifact repository isolated
to your machine at $HOME/.ivy2/local. Further executions of the the resolve target by this
or other projects will find your published jar.
* ivy-clean* :
this family of targets helps reset your IVY environment in the event that you are having
difficulty resolving dependencies
TYPICAL TARGET SEQUENCE
============
* clean-all resolve dist :
a good start to build all project distributables from scratch. Note that jar dependencies
will not be downloaded unless you explicitly run the resolve target. We made the resolution
and retrieval completely discretionary since there are many situations in which
you will not want to get or refresh dependencies, e.g. if you are offline with no Internet
access. In such case, you could just run "dist" if the set of jars you already have are
sufficient.
</description>
<!-- Load the properties files in the proper order -->
<property file="override.properties"
description="Properties customized for your development environment belong in this file. This file will never be checked into the SCM." />
<property file="build.properties"
description="Properties customized for your particular project belong in this file." />
<!-- =================================================================================
Property Defaults
Any of these properties can be overridden in either build.properties or override.properties
=================================================================================-->
<!-- Project meta properties -->
<property name="impl.vendor" value="Pentaho Corporation" description="Jar file metadata describing the jar's vendor" />
<property name="impl.productID"
value=""
description="Jar file metadata indicating the product ID (this is not the revision)" />
<!-- Compile properties -->
<property name="src.dir" value="${basedir}/src" description="Project source code directory" />
<property name="bin.dir" value="${basedir}/bin" description="Base directory for all non-dist build output" />
<property name="classes.dir"
value="${bin.dir}/classes"
description="Classes compiled from project source code are placed here" />
<property name="lib.dir"
value="${basedir}/lib"
description="Directory that hosts Jar files required to compile project source. (IVY will populate this directory with required jars)" />
<property name="devlib.dir"
value="${basedir}/dev-lib"
description="Directory for developer to place development Jar files (not affected by clean targets)" />
<!-- Compiler properties (passed directly to javac ant target) -->
<property name="javac.debug"
value="true"
description="Indicates whether source should be compiled with debug information (passed to javac ant task)." />
<property name="javac.deprecation"
value="true"
description="Indicates whether source should be compiled with deprecation information" />
<property name="javac.source" value="6" description="Provide source compatibility with specified release" />
<property name="javac.target" value="6" description="Generate class files for specific VM version" />
<property name="javac.maxmemory" value="256M" description="Max memory alloted to java compile" />
<property name="javac.xlint" value="-Xlint:all" />
<!-- Third party Ant tasks and tools properties -->
<property name="subfloor.resources.dir"
value="${user.home}/.subfloor"
description="Base dir for runtime jars that are required exclusively by the build process" />
<property name="subfloor.tmp.dir"
value="${subfloor.resources.dir}/tmp"
description="Temporary space where files are prepared for installation" />
<property name="antcontrib.build.cache.dir"
value="${subfloor.resources.dir}/ant-contrib"
description="Directory where the Ant-Contrib jar (and dependencies) is placed after it is auto-downloaded by the build" />
<property name="svnant.use-javahl"
value="false"
description="Prefer JNI JavaHL binding over the command line client for native svn support" />
<property name="svnant.use-svnkit"
value="true"
description="Prefer SVNKit binding over the command line client for native svn support (defaults to true)" />
<property name="ivy.url"
value="http://repo2.maven.org/maven2/org/apache/ivy/ivy/2.2.0/ivy-2.2.0.jar"
description="The URL to the current release of Apache IVY" />
<!-- Enunciate properties -->
<property name="enunciate.home" value="${basedir}/enunciate" />
<property name="enunciate.bin.dir" value="${bin.dir}/enunciate" />
<!-- Test properties -->
<property name="junit.base.dir" value="${basedir}" description="Directory in which the junit test VM will be invoked" />
<property name="testsrc.dir" value="${basedir}/test-src" description="Directory that hosts the test source files" />
<property name="testlib.dir"
value="${basedir}/test-lib"
description="Directory for jar files needed during unit testing" />
<property name="testbin.dir"
value="${bin.dir}/test"
description="Base directory for all compiler generated test output" />
<property name="testclasses.dir"
value="${testbin.dir}/classes"
description="Classes compiled from project test code are placed here" />
<property name="testreports.dir"
value="${bin.dir}/reports/test"
description="Base directory that holds all unit test report files" />
<property name="testreports.xml.dir"
value="${testreports.dir}/xml"
description="Unit test xml reports are placed here" />
<property name="testreports.html.dir"
value="${testreports.dir}/html"
description="Unit test html reports are placed here" />
<property name="junit.haltonfailure" value="no" description="Fail the build if a test fails" />
<property name="junit.haltonerror" value="no" description="Fail the build if a error occurs" />
<property name="junit.maxmemory" value="256M" description="Heap size when Junit is run in fork mode" />
<property name="junit.forkmode"
value="perTest"
description="Defines whether JUnit forks a new JVM for each test. Use 'once' for faster test runs, and 'perTest' for complete tests."/>
<property name="headless.unittest" value="true" description="Runs the unit tests in headless mode" />
<!-- Code Coverage properties -->
<property name="instrumented.classes.dir"
value="${testbin.dir}/instrumented-classes"
description="Directory where instrumented project classes are placed for use by code coverage utility" />
<property name="cobertura.version"
value="1.9.4.1"
description="The version of cobertura to use for code coverage" />
<property name="cobertura.data.dir"
value="${testbin.dir}/cobertura-bin"
description="Temporary data directory used by Cobertura" />
<property name="coberturareports.dir"
value="${bin.dir}/reports/cobertura"
description="Base directory for all generated Cobertura code coverage reports" />
<property name="coberturareports.xml.dir"
value="${coberturareports.dir}/xml"
description="Cobertura xml reports are placed here" />
<property name="coberturareports.html.dir"
value="${coberturareports.dir}/html"
description="Cobertura html reports are placed here" />
<!-- Javadoc properties -->
<property name="javadoc.dir"
value="${bin.dir}/javadoc"
description="Directory where generated javadoc will be placed" />
<property name="javadoc.packagenames"
value="org.mypackagename.*"
description="This property is passed to the packagenames property of the javadoc ant task. You should customize this for your project." />
<property name="javadoc.zip.filename" value="${ivy.artifact.id}-${project.revision}-javadoc.zip" />
<property name="javadoc.tar.filename" value="${ivy.artifact.id}-${project.revision}-javadoc.tar.gz" />
<!-- Distribution and Assembly properties -->
<property name="dist.dir"
value="${basedir}/dist"
description="Base directory for all project artifacts (jar, zip, tar.gz, etc...)" />
<property name="license.dir"
value="${basedir}"
description="Base directory where this project's license files reside" />
<property name="res.dir"
value="${basedir}/res"
description="Directory that holds resources not included in the source tree" />
<property name="source.zip.filename" value="${ivy.artifact.id}-${project.revision}-sources.zip" />
<property name="source.tar.filename" value="${ivy.artifact.id}-${project.revision}-sources.tar.gz" />
<property name="source.publish" value="true" />
<!-- Ivy properties -->
<property name="ivy.settingsurl"
value="file:${basedir}/ivysettings.xml"
description="URL to the (common) ivysettings.xml. This file is required by the build to configure IVY. Note you must escape the ':' if this property exists in a .properties file" />
<property name="ivyfile"
value="ivy.xml"
description="The name of the IVY xml file defining your project's dependencies" />
<property name="ivy.artifact.group"
value="mycompanyname"
description="IVY metadata describing the originating company or organization" />
<property name="ivy.artifact.pomfile"
value="${dist.dir}/pom.xml"
description="The path to the Maven pom file to deploy with the artifact" />
<property name="ivy.artifact.ivyfilename"
value="ivy.xml"
description="The name of the IVY xml file to deploy with the artifact" />
<property name="ivy.artifact.ivypathname"
value="${dist.dir}/ivy.xml"
description="The full path to the IVY xml file to deploy with the artifact" />
<property name="ivy.reports.dir"
value="${bin.dir}/reports/ivy"
description="Base directory that holds all IVY dependency report files" />
<property name="ivy.configs" value="*" description="Set of configs used for IVY reporting and checking operations" />
<property name="ivy.use.symlinks" value="true" description="Flag indicating if Ivy should create symlinks when retrieving artifacts."/>
<!-- Tattletale properties -->
<property name="tattletale.url"
value="http://repo.pentaho.org/artifactory/repo/jboss/tattletale/1.1.2.Final/tattletale-1.1.2.Final.zip"
description="The URL from which to download tattletale" />
<property name="tattletale.classname"
value="org.jboss.tattletale.ant.ReportTask"
description="The name of the class which will run the tattletale reports" />
<property name="tattletale.reports.dir"
value="${bin.dir}/reports/tattletale"
description="Base directory that holds the output of the tattletale reports" />
<property name="tattletale.configfile"
value=""
description="The configuration file for the tattletale report" />
<!-- Sonar properties -->
<property name="sonar.url"
value="http://repo1.maven.org/maven2/org/codehaus/sonar-plugins/sonar-ant-task/1.2/sonar-ant-task-1.2.jar"/>
<property name="sonar.classname"
value="org.sonar.ant.SonarTask"/>
<!-- Load the manifest file (if any) as a properties file -->
<property name="dist.manifest.file"
value="${dist.dir}/MANIFEST.MF"
description="The manifest file that will be generated as part of the build" />
<property name="manifest.file"
value="${res.dir}/META-INF/MANIFEST.MF"
description="The location of the MANIFEST.MF file for this application." />
<property file="${manifest.file}"
description="Loads the manifest information from the manifest file as a properties file." />
<!-- Set the project revision number to the value in the manifest file (if it has not
been specified in the properties file -->
<property name="project.revision"
value="${Implementation-Version}"
description="Sets the version number of the project based on the Implementation-Version found in the manifest file (if one is supplied and nothing is specified in the build.properties)" />
<fail message="A project revision number has not been determined!">
<condition>
<matches string="${project.revision}" pattern="\$\{.*\}" />
</condition>
</fail>
<!-- Set the project title to the value in the manifest file (if it has not
been specified in the properties file -->
<property name="impl.title"
value="${Implementation-Title}"
description="Sets the title of the project based on the Implementation-Title found in the manifest file (if one is supplied and nothing is specified in the build.properties)" />
<fail message="A project title has not been determined!">
<condition>
<matches string="${impl.title}" pattern="\$\{.*\}" />
</condition>
</fail>
<!-- Build Mode properties -->
<property name="release" value="false" description="Set this to true if you want to generate a release artifact" />
<!-- Ivy should only use symlinks if we're not in release mode -->
<condition property="ivy.use.symlinks.internal">
<and>
<isfalse value="${release}"/>
<istrue value="${ivy.use.symlinks}"/>
</and>
</condition>
<!-- Set the os property -->
<condition property="isLinux">
<os family="unix" />
</condition>
<condition property="isWindows">
<os family="windows" />
</condition>
<condition property="isMac">
<os family="mac" />
</condition>
<condition property="os.classifier" value="win">
<os family="windows" />
</condition>
<condition property="os.classifier" value="mac">
<os family="mac" />
</condition>
<condition property="os.classifier" value="linux">
<os family="unix" />
</condition>
<property name="os.classifier" value="unsupported" />
<!-- Setup the compile classpath -->
<path id="classpath">
<fileset dir="${devlib.dir}">
<include name="**/*.jar" />
</fileset>
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
</path>
<!-- Setup the classpath used for testing -->
<path id="test.classpath">
<pathelement path="${testclasses.dir}" />
<pathelement path="${classes.dir}" />
<fileset dir="${devlib.dir}">
<include name="**/*.jar" />
</fileset>
<fileset dir="${testlib.dir}">
<include name="**/*.jar" />
</fileset>
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
</path>
<!--=======================================================================
default
The target that is run if no target is given
====================================================================-->
<target name="default" depends="build" />
<!--=======================================================================
build
Runs a typical build process to create the project locally
====================================================================-->
<target name="build" depends="clean-all,resolve,cobertura,dist-source,dist" />
<!--=======================================================================
build-testless
Runs a typical build process to create the project locally (no testing)
====================================================================-->
<target name="build-testless" depends="clean-all,resolve,dist-source,dist" />
<!--=======================================================================
continuous
Runs a typical continuous integration build including project dist,
test, and coverage artifacts
====================================================================-->
<target name="continuous" depends="build,publish" />
<!--=======================================================================
continuous-testless
Runs a typical continuous integration build including project dist,
and coverage artifacts
====================================================================-->
<target name="continuous-testless" depends="build-testless,publish" />
<!--=======================================================================
install-antcontrib
(Fetches and) installs ant-contrib tasks.
====================================================================-->
<target name="install-antcontrib" depends="antcontrib.download-check">
<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<fileset dir="${antcontrib.build.cache.dir}">
<include name="*.jar" />
</fileset>
</classpath>
</taskdef>
</target>
<!--=======================================================================
antcontrib.download-check
Fetches ant-contrib from sourceforge if it is not already present
====================================================================-->
<target name="antcontrib.download-check">
<condition property="antcontrib.available">
<and>
<available file="${antcontrib.build.cache.dir}" />
<available classname="net.sf.antcontrib.logic.IfTask">
<classpath>
<fileset dir="${antcontrib.build.cache.dir}">
<include name="*.jar" />
</fileset>
</classpath>
</available>
</and>
</condition>
<antcall target="antcontrib.download" />
</target>
<!--=======================================================================
antcontrib.download
Fetches ant-contrib from sourceforge
====================================================================-->
<target name="antcontrib.download" unless="antcontrib.available">
<mkdir dir="${subfloor.tmp.dir}" />
<get src="http://downloads.sourceforge.net/ant-contrib/ant-contrib-1.0b3-bin.zip"
dest="${subfloor.tmp.dir}/antcontrib.zip"
usetimestamp="true" />
<unzip src="${subfloor.tmp.dir}/antcontrib.zip" dest="${subfloor.tmp.dir}">
<patternset>
<include name="**/*.jar" />
</patternset>
</unzip>
<copy todir="${antcontrib.build.cache.dir}">
<fileset dir="${subfloor.tmp.dir}/ant-contrib">
<include name="**/*.jar" />
</fileset>
</copy>
</target>
<!--=======================================================================
init
Ensures that all the required directories exist before processing
a build.
====================================================================-->
<target name="init">
<mkdir dir="${classes.dir}" />
<mkdir dir="${dist.dir}" />
<mkdir dir="${lib.dir}" />
<mkdir dir="${devlib.dir}" />
<mkdir dir="${testlib.dir}" />
</target>
<!--=======================================================================
install-svnant
(Fetches and) installs the SVN ANT for use by this ant script
====================================================================-->
<target name="install-svnant" depends="install-ivy">
<if>
<istrue value="${svnant.isinstalled}" />
<then>
<echo message="Skipping SVN ANT install. SVN ANT has already been configured by the build" />
</then>
<else>
<taskdef-with-ivy organisation="tigris"
module="svnant"
revision="1.3.0"
resource="org/tigris/subversion/svnant/svnantlib.xml"
classname="org.tigris.subversion.svnant.SvnTask" />
<property name="svnant.isinstalled" value="true" />
</else>
</if>
</target>
<!--=======================================================================
test-svnant
Tests SVN by printing out the repository
====================================================================-->
<target name="test-svnant" depends="install-svnant">
<svn javahl="${svnant.use-javahl}" svnkit="${svnant.use-svnkit}">
<wcVersion path="." />
</svn>
<echo message="Subversion repository url: ${repository.url}" />
</target>
<!--=======================================================================
svn-revision
Prints and sets the SVN revision for the repository at the current dir (if svn.revision is not set)
====================================================================-->
<target name="svn-revision" depends="install-svnant">
<svn javahl="${svnant.use-javahl}" svnkit="${svnant.use-svnkit}">
<status path="." revisionProperty="svn.revision" />
</svn>
<echo message="Subversion repository revision: ${svn.revision}" />
</target>
<!--=======================================================================
set-build.id
Sets a property build.id to the either "development" or the svn revision
if in release mode
====================================================================-->
<target name="set-build.id" unless="build.id" depends="install-antcontrib">
<if>
<istrue value="${release}" />
<then>
<antcallback target="svn-revision" return="svn.revision" />
<property name="build.id" value="${svn.revision}" />
</then>
<else>
<property name="build.id" value="development" />
</else>
</if>
</target>
<!--=================================================================================
version-properties: common Ant driven version file generation. Projects that produce
a package or packages should run this target. Projects that produce
jars only should NOT.
===================================================================================-->
<target name="version-properties" depends="set-build.id">
<tstamp>
<format property="build.time" pattern="yyyy/MM/dd hh:mm aa" />
</tstamp>
<propertyfile file="version.properties" comment="Release Build version info">
<entry key="release.major.number" value="${release.major.number}" />
<entry key="release.minor.number" value="${release.minor.number}" />
<entry key="release.milestone.number" value="${release.milestone.number}" />
<entry key="release.candidate.token" value="${release.candidate.token}" />
<entry key="impl.vendor" value="${impl.vendor}" />
<entry key="impl.version"
value="${release.major.number}.${release.minor.number}.${release.milestone.number}.${build.id}" />
<entry key="impl.title" value="${impl.title}" />
<entry key="buildDate" value="${build.time}" />
<entry key="svn.revision" value="${build.id}" />
<entry key="release.build.number" default="0" type="int" operation="+" value="1" pattern="0000" />
</propertyfile>
<property file="${basedir}/version.properties" />
</target>
<!--=======================================================================
install-ivy
Fetches and installs IVY ant tasks if not already installed
====================================================================-->
<target name="install-ivy" depends="install-antcontrib">
<if>
<istrue value="${ivy.isinstalled}" />
<then>
<echo message="Skipping IVY install. IVY has already been configured by the build" />
</then>
<else>
<download-antlib name="ivy" url="${ivy.url}" classname="org.apache.ivy.ant.IvyTask" extension="jar" />
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant">
<classpath>
<fileset dir="${subfloor.resources.dir}/ivy">
<include name="*.jar" />
</fileset>
</classpath>
</taskdef>
<ivy:settings url="${ivy.settingsurl}" />
<property name="ivy.isinstalled" value="true" />
</else>
</if>
</target>
<!--=======================================================================
ivy.check-releasable
Verifies that there are no SNAPSHOT dependencies defined in the ivy xml.
If there are SNAPSHOTS, fail the release build.
====================================================================-->
<target name="ivy.check-releasable" depends="install-ivy, install-antcontrib">
<if>
<istrue value="${release}" />
<then>
<sequential>
<ivy:artifactproperty conf="${ivy.configs}" name="dep.[module]/[artifact]-[revision]" value="[revision]" />
<propertyselector property="violators" match="dep\..*SNAPSHOT.*" select="\0" casesensitive="false" />
<fail if="violators"
message="Release not possible, you have dependencies on non-released artifacts: ${violators}" />
</sequential>
</then>
</if>
</target>
<!--=======================================================================
resolve
Using ivy and the dependencies for the project (defined in the ivy.xml
file), this task will retrieve the needed files and place them into
the defined directories.
====================================================================-->
<target name="resolve"
depends="resolve-default, resolve-test, ivy.check-releasable"
description="Retrieves all the dependent libraries" />
<target name="resolve-init" unless="resolve-init.skip" depends="install-ivy">
<!-- If this is the 1st time through resolve-init, then we need to clean up the jars
-->
<antcall target="clean-jars" />
<property name="resolve-init.skip" value="" />
</target>
<target name="resolve-default" depends="resolve-default.default,resolve-default.composite"/>
<!--
This target resolves the default IVY configuration as a composite of child configurations.
You should set ivy.default.sub-configs in your build.properties only if you want your default
configuration to be treated as a composite of two or more child configurations.
To turn this on, set ivy.default.sub-configs property in your build.properties, e.g.
ivy.default.sub-configs=external,internal
Note: the parent config "default" proper will not be resolved
-->
<target name="resolve-default.composite" depends="install-antcontrib,resolve-init" if="ivy.default.sub-configs">
<for list="${ivy.default.sub-configs}" param="conf">
<sequential>
<ivy:resolve file="${ivyfile}" conf="default_@{conf}" />
<ivy:retrieve conf="default_@{conf}" pattern="${lib.dir}/@{conf}/[module]-[revision](-[classifier]).[ext]" symlink="${ivy.use.symlinks.internal}" />
</sequential>
</for>
</target>
<target name="resolve-default.default" depends="resolve-init" unless="ivy.default.sub-configs">
<ivy:resolve file="${ivyfile}" conf="default" />
<ivy:retrieve conf="default" pattern="${lib.dir}/[module]-[revision](-[classifier]).[ext]" symlink="${ivy.use.symlinks.internal}" />
</target>
<target name="resolve-test" depends="resolve-init">
<ivy:resolve file="${ivyfile}" conf="test" />
<ivy:retrieve conf="test" pattern="${testlib.dir}/[module]-[revision](-[classifier]).[ext]" symlink="${ivy.use.symlinks.internal}" />
</target>
<target name="resolve-enunciate" depends="resolve-init">
<ivy:resolve file="${ivyfile}" conf="enunciate" />
<ivy:retrieve conf="enunciate" pattern="${basedir}/enunciate/lib/[module]-[revision](-[classifier]).[ext]" />
</target>
<target name="resolve-codegen" depends="resolve-init">
<ivy:resolve file="${ivyfile}" conf="codegen" />
<ivy:retrieve conf="codegen" pattern="${lib.dir}/[module]-[revision](-[classifier]).[ext]" symlink="${ivy.use.symlinks.internal}" />
</target>
<target name="resolve-runtime" depends="resolve-init">
<ivy:resolve file="${ivyfile}" conf="runtime" />
<ivy:retrieve conf="runtime" pattern="${lib.dir}/[module]-[revision](-[classifier]).[ext]" symlink="${ivy.use.symlinks.internal}" />
</target>
<!--=======================================================================
ivy-clean-cache
Cleans the IVY cache. You are erasing IVY's memory. Run this if you
want to force IVY to go fetch all your project dependencies from scratch.
WARNING: this will affect all IVY projects, not just the current workspace
====================================================================-->
<target name="ivy-clean-cache" depends="install-ivy">
<ivy:cleancache />
</target>
<!--=======================================================================
ivy-clean-local
Completely cleans your local repository of any files published locally
by way of publish-local.
WARNING: this is a global action and will affect other IVY projects
currently referencing a locally published dependency
====================================================================-->
<target name="ivy-clean-local" depends="install-ivy">
<delete dir="${ivy.local.default.root}/" />
</target>
<!--=======================================================================
ivy-clean-by-name
Cleans your IVY cache and local repository of specific files.
WARNING: this is a global action and will affect other IVY projects
currently referencing a locally published dependency
====================================================================-->
<target name="ivy-clean-pentaho" depends="install-ivy">
<mkdir dir="${ivy.local.default.root}" />
<!-- just in case it doesn't exist -->
<for param="dir">
<path>
<dirset dir="${ivy.local.default.root}" includes="*${ivy.clean.pattern}*" />
<dirset dir="${ivy.default.ivy.user.dir}/cache" includes="*${ivy.clean.pattern}*" />
</path>
<sequential>
<delete dir="@{dir}" includeemptydirs="true" />
</sequential>
</for>
<for param="file">
<path>
<fileset dir="${ivy.local.default.root}" includes="*${ivy.clean.pattern}*" />
<fileset dir="${ivy.default.ivy.user.dir}/cache" includes="*${ivy.clean.pattern}*" />
</path>
<sequential>
<delete file="@{file}" />
</sequential>
</for>
</target>
<!--=======================================================================
ivy-report
Generates an IVY dependency report for this project.
====================================================================-->
<target name="ivy-report" depends="install-ivy">
<ivy:resolve file="${ivyfile}" conf="${ivy.configs}" />
<ivy:report xml="true" todir="${ivy.reports.dir}" />
</target>
<!--=======================================================================
publish-local-nojar
Publishes the jar file for this project to the user's local repository
for download by other projects currently being executed on the user's
system.
====================================================================-->
<target name="publish-local-nojar" depends="install-ivy,publish-local-nojar.internal">
<if>
<equals arg1="${tests.publish}" arg2="true" />
<then>
<antcall target="publish-local-nojar.internal">
<param name="ivy.artifact.id" value="${ivy.artifact.id}-test"/>
</antcall>
</then>
</if>
<antcall target="publish-local-nojar.post"/>
</target>
<!--=======================================================================
publish-local-nojar.post this target is invoked after the normal set of publish-local-nojar
is completed, override this to perform additional publishing in extensions of subfloor, etc
====================================================================-->
<target name="publish-local-nojar.post">
</target>
<target name="publish-local-nojar.internal" depends="install-ivy">
<ivy:resolve file="${ivy.artifact.ivyfilename}" />
<ivy:publish resolver="local" pubrevision="${project.revision}" overwrite="true" forcedeliver="true" warnonmissing="yes" haltonmissing="no">
<artifacts pattern="${dist.dir}/[artifact]-[revision](-[classifier]).[ext]" />
</ivy:publish>
</target>
<!--=======================================================================
publish-local
Builds and publishes the jar file for this project to the user's
local repository for download by other projects currently being
executed on the user's system.
====================================================================-->
<target name="publish-local"
depends="dist, dist-source, publish-local-nojar"
description="Builds and publishes the jar file to the local repository" />
<!--=======================================================================
publish
Creates and publishes the jar file for this project to a Maven2
repository.
====================================================================-->
<target name="publish" depends="dist, dist-source, publish-nojar">
</target>
<!--=======================================================================
publish-nojar
Publishes the jar file for this project to a Maven2 repository.
====================================================================-->
<target name="publish-nojar" depends="install-antcontrib,create-pom,ivy.deliver,publish-nojar.internal">
<if>
<equals arg1="${tests.publish}" arg2="true" />
<then>
<antcall target="publish-nojar.internal">
<param name="ivy.artifact.id" value="${ivy.artifact.id}-test"/>
</antcall>
</then>
</if>
</target>
<target name="publish-nojar.internal" depends="install-antcontrib,create-pom,ivy.deliver">
<antcall target="maven-publish-dependencies">
<param name="publish.groupId" value="${ivy.artifact.group}" />
<param name="publish.artifactId" value="${ivy.artifact.id}" />
<param name="publish.version" value="${project.revision}" />
<param name="publish.file" value="${ivy.artifact.ivypathname}" />
</antcall>
<if>
<equals arg1="${source.publish}" arg2="true" />
<then>
<antcall target="maven-publish-sources">
<param name="publish.groupId" value="${ivy.artifact.group}" />
<param name="publish.artifactId" value="${ivy.artifact.id}" />
<param name="publish.version" value="${project.revision}" />
<param name="publish.file" value="${dist.dir}/${ivy.artifact.id}-${project.revision}-sources.jar" />
</antcall>
</then>
</if>
<antcall target="maven-publish-artifact">
<param name="publish.pomFile" value="${ivy.artifact.pomfile}" />
<param name="publish.file" value="${dist.dir}/${ivy.artifact.id}-${project.revision}.jar" />
</antcall>
<antcall target="maven-publish.post"/>
</target>
<!-- Override this if anything is needed to be done after the standard parts of publish are completed -->
<!-- Such as: publishing non-standard/extended artifacts, etc -->
<target name="maven-publish.post"/>
<!--=======================================================================
ivy.deliver
Creates a publishable version of the ivy dependencies file, ivy.xml
====================================================================-->
<target name="ivy.deliver" depends="resolve">
<ivy:deliver conf="*(public)" deliverpattern="${dist.dir}/ivy.xml" />
</target>
<!--=======================================================================
maven-publish-dependencies
A function that deploys an ivy.xml file to a maven repository
====================================================================-->
<target name="maven-publish-dependencies" depends="install-antcontrib">
<sequential>
<fail message="No file found at: ${publish.file}">
<condition>
<not>
<available file="${publish.file}" />
</not>
</condition>
</fail>
<echo message="Publishing ${publish.file} to ${ivy.repository.publish}..." />
<if>
<isset property="isWindows" />
<then>
<exec executable="cmd" failonerror="true">
<arg value="/c" />
<arg value="mvn.bat" />
<arg value="deploy:deploy-file" />
<arg value="-DrepositoryId=${ivy.repository.id}" />
<arg value="-Durl=${ivy.repository.publish}" />
<arg value="-DgroupId=${publish.groupId}" />
<arg value="-DartifactId=${publish.artifactId}" />
<arg value="-Dversion=${publish.version}" />
<arg value="-Dpackaging=ivy.xml" />
<arg value="-Dfile=${publish.file}" />
</exec>
</then>
<else>
<exec executable="mvn" failonerror="true">
<arg value="deploy:deploy-file" />
<arg value="-DrepositoryId=${ivy.repository.id}" />
<arg value="-Durl=${ivy.repository.publish}" />
<arg value="-DgroupId=${publish.groupId}" />
<arg value="-DartifactId=${publish.artifactId}" />
<arg value="-Dversion=${publish.version}" />
<arg value="-Dpackaging=ivy.xml" />
<arg value="-Dfile=${publish.file}" />
<arg value="-e" />
</exec>
</else>
</if>
</sequential>
</target>
<!--=======================================================================
maven-publish-artifact
A function that deploys an artifact to a maven repository
====================================================================-->
<target name="maven-publish-artifact" depends="install-antcontrib">
<sequential>
<fail message="No file found at: ${publish.file}">
<condition>
<not>
<available file="${publish.file}" />
</not>
</condition>
</fail>
<echo message="Publishing ${publish.file} to ${ivy.repository.publish}..." />
<if>
<isset property="isWindows" />
<then>
<exec executable="cmd" failonerror="true">
<arg value="/c" />
<arg value="mvn.bat" />
<arg value="deploy:deploy-file" />
<arg value="-DrepositoryId=${ivy.repository.id}" />
<arg value="-Durl=${ivy.repository.publish}" />
<arg value="-DpomFile=${publish.pomFile}" />
<arg value="-Dfile=${publish.file}" />
</exec>
</then>
<else>
<exec executable="mvn" failonerror="true">
<arg value="deploy:deploy-file" />
<arg value="-DrepositoryId=${ivy.repository.id}" />
<arg value="-Durl=${ivy.repository.publish}" />
<arg value="-DpomFile=${publish.pomFile}" />
<arg value="-Dfile=${publish.file}" />
</exec>
</else>
</if>
</sequential>
</target>
<!--=======================================================================
maven-publish-sources
A function that deploys a java-sources artifact to a maven repository
====================================================================-->
<target name="maven-publish-sources" depends="install-antcontrib">