forked from freemarker/freemarker-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
865 lines (767 loc) · 31.2 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
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="jar" name="freemarker"
xmlns:ivy="antlib:org.apache.ivy.ant"
xmlns:javacc="http://javacc.dev.java.net/"
xmlns:docgen="http://freemarker.org/docgen"
xmlns:emma="http://emma.sourceforge.net/emma"
xmlns:bnd="http://www.aqute.biz/bnd"
xmlns:u="http://freemarker.org/util"
>
<!-- ================================================================== -->
<!-- Properties -->
<!-- ================================================================== -->
<!-- Ivy project coordinates: -->
<property name="moduleOrg" value="org.freemarker" />
<property name="moduleName" value="freemarker" />
<property name="moduleBranch" value="2.4" />
<!-- Will be overidden on the server: -->
<property name="server.ivy.repo.root" value="${basedir}/build/dummy-server-ivy-repo" />
<property file="build.properties"/>
<condition property="has.explicit.boot.classpath">
<isset property="boot.classpath"/>
</condition>
<!-- When boot.classpath is missing, this is the default: -->
<property name="boot.classpath" value="${sun.boot.class.path}" />
<!-- For checking the correctness of the boot.classpath -->
<available classpath="${boot.classpath}"
classname="java.lang.Object" ignoresystemclasses="true"
property="boot.classpath.correct"
/>
<condition property="example.freemarker.jar.location"
value="freemarker.jar" else="build/freemarker.jar">
<and>
<available file="freemarker.jar" />
<not>
<available file="build/freemarker.jar" />
</not>
</and>
</condition>
<available file="lib/struts" property="struts.available" />
<!-- Set up version/timestamp filters and the version property: -->
<tstamp>
<format property="timestampNice" pattern="yyyy-MM-dd'T'HH:mm:ss'Z'"
timezone="UTC" />
<format property="timestampInVersion" pattern="yyyyMMdd'T'HHmmss'Z'"
timezone="UTC" />
</tstamp>
<filter token="timestampInVersion" value="${timestampInVersion}" />
<filter token="timestampNice" value="${timestampNice}" />
<mkdir dir="build "/>
<!-- Copying is needed to substitute the timestamps. -->
<copy
file="src/main/resources/freemarker/version.properties"
tofile="build/version.properties.tmp"
filtering="true"
overwrite="true"
/>
<property file="build/version.properties.tmp" />
<delete file="build/version.properties.tmp" />
<filter token="version" value="${version}" />
<property name="dist.dir" value="build/dist/freemarker-${version}" />
<!-- ================================================================== -->
<!-- Initialization -->
<!-- ================================================================== -->
<target name="clean" description="get rid of all generated files">
<delete dir="build" />
</target>
<condition property="deps.available">
<available file=".ivy" />
</condition>
<target name="init" depends="_autoget-deps"
description="fetch dependencies if any are missing and create the build directory if necessary"
>
<mkdir dir="build"/>
</target>
<!-- ================================================================= -->
<!-- Compilation -->
<!-- ================================================================= -->
<target name="javacc" depends="init" unless="parser.uptodate"
description="Build the parser from its grammar file"
>
<ivy:cachepath conf="parser" pathid="ivy.dep" />
<taskdef name="generate" classname="org.apache.tools.ant.taskdefs.optional.javacc.JavaCC"
uri="http://javacc.dev.java.net/"
classpathref="ivy.dep"
/>
<property name="_javaccOutputDir"
value="build/generated-sources/java/freemarker/core/"
/>
<mkdir dir="${_javaccOutputDir}" />
<ivy:retrieve conf="parser" pattern="build/javacc-home.tmp/[artifact].[ext]" />
<javacc:generate
target="src/main/javacc/FTL.jj"
outputdirectory="${_javaccOutputDir}"
javacchome="build/javacc-home.tmp"
/>
<delete dir="build/javacc-home.tmp" />
<replace
file="${_javaccOutputDir}/FMParser.java"
token="private final LookaheadSuccess"
value="private static final LookaheadSuccess"
/>
<replace
file="${_javaccOutputDir}/FMParserConstants.java"
token="public interface FMParserConstants"
value="interface FMParserConstants"
/>
<replace
file="${_javaccOutputDir}/FMParserTokenManager.java"
token="public class FMParserTokenManager"
value="class FMParserTokenManager"
/>
<replace
file="${_javaccOutputDir}/Token.java"
token="public class Token"
value="class Token implements java.io.Serializable"
/>
<replace
file="${_javaccOutputDir}/SimpleCharStream.java"
token="public final class SimpleCharStream"
value="final class SimpleCharStream"
/>
<replace
file="${_javaccOutputDir}/FMParser.java"
token="enum"
value="ENUM"
/>
<!-- As we have a modified version in src/main/java: -->
<move
file="${_javaccOutputDir}/ParseException.java"
tofile="${_javaccOutputDir}/ParseException.java.ignore"
/>
</target>
<target name="compile" depends="javacc">
<fail unless="boot.classpath.correct"><!--
-->The "boot.classpath" property value (${boot.classpath}) <!--
-->seems to be an incorrect boot classpath. Please fix it in <!--
-->the <projectDir>/build.properties file, or wherever you <!--
-->set it.<!--
--></fail>
<echo level="info">Using boot classpath: ${boot.classpath}</echo>
<mkdir dir="build/classes" />
<!-- Note: the "build" conf includes the JSP 2.0 and Servlet 2.4 API-s -->
<ivy:cachepath conf="build" pathid="ivy.dep" />
<javac destdir="build/classes" deprecation="off"
debug="on" optimize="off" target="1.5" source="1.5" encoding="utf-8"
includeantruntime="false"
classpathref="ivy.dep"
bootclasspath="${boot.classpath}"
excludes="
freemarker/ext/jsp/FreeMarkerPageContext21.java,
freemarker/ext/jsp/FreeMarkerJspFactory21.java,
freemarker/ext/jsp/FreeMarkerJspApplicationContext.java"
>
<src>
<pathelement location="src/main/java" />
<pathelement location="build/generated-sources" />
</src>
</javac>
<ivy:cachepath conf="build.jsp2.1" pathid="ivy.dep.jsp2.1" />
<javac srcdir="src/main/java" destdir="build/classes" deprecation="off"
debug="on" optimize="off" target="1.5" source="1.5" encoding="utf-8"
includeantruntime="false"
classpathref="ivy.dep.jsp2.1"
bootclasspath="${boot.classpath}"
includes="
freemarker/ext/jsp/FreeMarkerPageContext21.java,
freemarker/ext/jsp/FreeMarkerJspFactory21.java,
freemarker/ext/jsp/FreeMarkerJspApplicationContext.java"
/>
<rmic base="build/classes" classpathref="ivy.dep"
includes="src/main/java/freemarker/debug/impl/Rmi*Impl.class"
verify="yes" stubversion="1.2"
/>
<!-- We don't have this file in 2.4.X... yet?
<copy
file="build/classes/freemarker/core/SecureRendererImpl.class"
tofile="build/classes/freemarker/core/SecureRendererImpl.clazz"
/>
-->
<copy toDir="build/classes">
<fileset dir="src/main/resources"
excludes="
freemarker/version.properties"
/>
</copy>
<copy toDir="build/classes" filtering="true" overwrite="true">
<fileset dir="src/main/resources"
includes="
freemarker/version.properties"
/>
</copy>
<copy toDir="build/classes/META-INF">
<fileset dir="."
includes="
LICENSE.txt,
NOTICE.txt"
/>
</copy>
</target>
<target name="compileTest" depends="compile">
<mkdir dir="build/test-classes" />
<ivy:cachepath conf="build.test" pathid="ivy.dep.test" />
<javac srcdir="src/test/java" destdir="build/test-classes" deprecation="off"
debug="on" optimize="off" target="1.5" source="1.5" encoding="utf-8"
includeantruntime="false"
classpath="build/classes"
classpathref="ivy.dep.test"
bootclasspath="${boot.classpath}"
/>
<copy toDir="build/test-classes">
<fileset dir="src/test/resources"
excludes=""
/>
</copy>
</target>
<target name="jar" depends="compile">
<ivy:cachepath pathid="ivy.dep" conf="bnd" />
<taskdef resource="aQute/bnd/ant/taskdef.properties"
uri="http://www.aqute.biz/bnd"
classpathref="ivy.dep"
/>
<!-- Hack: This file should be excluded, but I can't explain that to bnd. -->
<!-- We don't have this file in 2.4.X... yet?
<move
file="build/classes/freemarker/core/SecureRendererImpl.class"
tofile="build/SecureRendererImpl.class.tmp"
preservelastmodified="true" overwrite="true"
/>
-->
<bnd:bnd
files="osgi.bnd" eclipse="false"
output="build/freemarker.jar"
/>
<!-- Revert previous hack... -->
<!-- We don't have this file in 2.4.X... yet?
<move
file="build/SecureRendererImpl.class.tmp"
tofile="build/classes/freemarker/core/SecureRendererImpl.class"
preservelastmodified="true" overwrite="true"
/>
-->
</target>
<!-- ================================================================= -->
<!-- Testing -->
<!-- ================================================================= -->
<target name="test" depends="compileTest" description="Run test cases">
<ivy:cachepath conf="emma" pathid="ivy.dep.emma" />
<taskdef
resource="emma_ant.properties" classpathref="ivy.dep.emma"
uri="http://emma.sourceforge.net/emma"
/>
<property name="coverage.dir" location="build/coverage" />
<property name="coverage.classes.dir" location="build/coverage/classes" />
<mkdir dir="${coverage.classes.dir}" />
<property name="coverage.instrumentationfile" location="${coverage.dir}/instrumentation" />
<emma:emma enabled="true">
<instr
instrpath="build/classes" outdir="${coverage.classes.dir}"
outfile="${coverage.instrumentationfile}" mode="copy">
<filter excludes="*_Stub" />
</instr>
</emma:emma>
<copy todir="${coverage.classes.dir}" overwrite="false">
<fileset dir="build/classes" />
<fileset dir="build/test-classes" />
</copy>
<property name="coverage.outfile" location="${coverage.dir}/coverage" />
<mkdir dir="build/junit-reports" />
<ivy:cachepath conf="test" pathid="ivy.dep.test" />
<junit haltonfailure="off" fork="true">
<sysproperty key="emma.coverage.out.file" value="${coverage.outfile}" />
<classpath>
<pathelement path="${coverage.classes.dir}" />
<path refid="ivy.dep.emma" />
<path refid="ivy.dep.test" />
</classpath>
<formatter type="plain" />
<formatter type="xml" />
<batchtest todir="build/junit-reports">
<fileset dir="src/test/java">
<include name="**/*Test.java" />
<include name="**/*TestSuite.java" />
</fileset>
</batchtest>
</junit>
</target>
<target name="test-with-coverage-report" depends="test">
<ivy:cachepath conf="emma" pathid="ivy.dep.emma" />
<taskdef
resource="emma_ant.properties" classpathref="ivy.dep.emma"
uri="http://emma.sourceforge.net/emma"
/>
<property name="coverage.report.dir" location="build/coverage/report" />
<mkdir dir="${coverage.report.dir}" />
<delete dir="${coverage.report.dir}" />
<mkdir dir="${coverage.report.dir}" />
<echo message="${coverage.outfile}" />
<echo message="${coverage.instrumentationfile}" />
<emma:emma enabled="true">
<report>
<fileset dir="${basedir}">
<include name="build/coverage/instrumentation" />
<include name="build/coverage/coverage" />
</fileset>
<sourcepath>
<dirset dir="${basedir}">
<include name="src/main/java" />
</dirset>
</sourcepath>
<html outfile="${coverage.report.dir}/index.html" />
<xml outfile="${coverage.report.dir}/report.xml" />
</report>
</emma:emma>
</target>
<!-- ================================================================= -->
<!-- Generate docs -->
<!-- ================================================================= -->
<target depends="javacc" name="javadoc" description="Build the JavaDocs" >
<!-- depends="javacc" is needed as its output is referred in the docs. -->
<mkdir dir="build/api" />
<delete includeEmptyDirs="yes">
<fileset dir="build/api" includes="**/*" />
</delete>
<ivy:cachepath conf="build.jsp2.1" pathid="ivy.dep" />
<javadoc
sourcepath="src/main/java"
destdir="build/api"
doctitle="FreeMarker ${version}"
packagenames="
freemarker.debug, freemarker.template.*,
freemarker.core.*, freemarker.ext.*,
freemarker.cache.*, freemarker.log.*"
use="true"
version="true"
author="true"
windowtitle="FreeMarker ${version} API"
classpathref="ivy.dep"
/>
</target>
<target name="manual" depends="init" description="Build the Manual" >
<ivy:cachepath conf="manual" pathid="ivy.dep" />
<taskdef resource="org/freemarker/docgen/antlib.properties"
uri="http://freemarker.org/docgen"
classpathref="ivy.dep"
/>
<docgen:transform
srcdir="src/manual" destdir="build/manual"
/>
</target>
<!-- ====================== -->
<!-- Examples -->
<!-- ====================== -->
<macrodef name="buildExampleWebapp" uri="http://freemarker.org/util">
<attribute name="exampleName" />
<sequential>
<mkdir dir="build/examples/@{exampleName}/WEB-INF/classes" />
<ivy:cachepath conf="example.@{exampleName}" pathid="ivy.dep" />
<javac
srcdir="src/examples/@{exampleName}/WEB-INF/classes"
destdir="build/examples/@{exampleName}/WEB-INF/classes"
deprecation="off" debug="on" optimize="off" target="1.5" source="1.5"
encoding="utf-8"
includeantruntime="false"
classpathref="ivy.dep"
bootclasspath="${boot.classpath}"
>
<classpath>
<pathelement path="${ivy.dep}" />
<pathelement location="${example.freemarker.jar.location}" />
<fileset dir="lib/struts" erroronmissingdir="false">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
<copy toDir="build/examples/@{exampleName}">
<fileset dir="src/examples/@{exampleName}" excludes="**/*.java" />
</copy>
<copy file="${example.freemarker.jar.location}"
todir="build/examples/@{exampleName}/WEB-INF/lib" />
<echo message="*** Example built: build/examples/@{exampleName} ***" />
</sequential>
</macrodef>
<target name="example-webapp1" depends="init">
<u:buildExampleWebapp examplename="webapp1" />
</target>
<target name="example-webapp2" depends="init">
<u:buildExampleWebapp examplename="webapp2" />
</target>
<target name="example-struts-webapp" depends="init">
<fail unless="struts.available"><!--
-->You have to copy the Struts 1.1 jar-s to <!--
-->lib/struts to build this example!<!--
--></fail>
<copy todir="build/examples/struts-webapp/WEB-INF/lib">
<fileset dir="lib/struts" />
</copy>
<u:buildExampleWebapp examplename="struts-webapp" />
</target>
<target name="example-ant" depends="init">
<mkdir dir="build/examples/ant" />
<copy toDir="build/examples/ant">
<fileset dir="src/examples/ant" />
</copy>
<copy file="${example.freemarker.jar.location}"
todir="build/examples/ant/lib" />
<echo message="*** Example built: build/examples/ant ***" />
</target>
<!-- ====================== -->
<!-- Distributuion building -->
<!-- ====================== -->
<target name="dist"
description="Build the FreeMarker distribution files"
>
<fail
unless="has.explicit.boot.classpath"
message="boot.classpath must be set in build.properties for dist!"
/>
<antcall target="clean" /> <!-- To improve the reliability -->
<antcall target="_dist" />
</target>
<target name="_dist"
depends="jar, javadoc, manual"
description="(Used internally; don't call it)"
>
<!-- Copy jars and sources and such into the distro -->
<delete dir="${dist.dir}" />
<mkdir dir="${dist.dir}" />
<copy todir="${dist.dir}" includeEmptyDirs="no">
<fileset dir=".">
<include name="src/**" />
<include name="examples/**" />
<exclude name="**/.*/**" />
<exclude name="**/.*" />
<exclude name="**/*.bak" />
<exclude name="**/*.~*" />
<include name="build.xml" />
<include name="ivy.xml" />
<include name="ivysettings.xml" />
<include name="osgi.bnd" />
<include name="build.properties.sample" />
<include name="*.txt" />
</fileset>
</copy>
<copy file="build/freemarker.jar" tofile="${dist.dir}/freemarker-${version}.jar" />
<replace
file="${dist.dir}/README.txt"
token="{version}"
value="${version}"
/>
<!-- Generate website pages and copy them into distro -->
<ivy:retrieve conf="site" pattern="build/site/[artifact].[ext]" />
<untar compression="gzip" src="build/site/site.tar.gz" dest="${dist.dir}/docs" />
<!-- Copy Manual -->
<copy todir="${dist.dir}/docs/docs" includeEmptyDirs="no">
<fileset dir="build/manual" />
</copy>
<!-- Copy javadocs -->
<copy todir="${dist.dir}/docs/docs/api" includeEmptyDirs="no">
<fileset dir="build/api" />
</copy>
<!-- Package the distro -->
<property name="freemarker.tar" value="build/freemarker-${version}.tar" />
<property name="freemarker.gzip" value="${freemarker.tar}.gz" />
<delete file="${freemarker.tar}" />
<tar tarfile="${freemarker.tar}" basedir="${dist.dir}" />
<delete file="${freemarker.gzip}" />
<gzip zipfile="${freemarker.gzip}" src="${freemarker.tar}" />
<delete file="${freemarker.tar}" />
</target>
<!--
Uploads the freemarker.jar that is in the current DISTRIBUTION DIRECTORY
into the place that the central Maven2 repository syncs itself with
periodically. Of course it also uploads the Maven-specific metadata files.
Use this after "dist" (without interleaving "clean").
Note: maven-ant-tasks-x.x.x.jar must be added to ${ANT_HOME}/lib for
this to work. Get it here: http://maven.apache.org/download.html
-->
<target name="maven-upload" xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<echo file="build/pom.xml"><![CDATA[<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>${version}</version>
<packaging>jar</packaging>
<name>FreeMarker</name>
<description>
FreeMarker is a "template engine"; a generic tool to generate text output based on templates.
</description>
<url>http://freemarker.org</url>
<licenses>
<license>
<name>BSD-style license</name>
<url>http://freemarker.org/LICENSE.txt</url>
</license>
</licenses>
<scm>
<url>http://freemarker.svn.sourceforge.net/viewvc/freemarker/</url>
<connection>scm:svn:https://freemarker.svn.sourceforge.net/svnroot/freemarker</connection>
</scm>
<dependencies>
<!-- no required dependencies -->
</dependencies>
</project>
]]></echo>
<jar destfile="build/maven-source-attachment.jar"
basedir="src/main/java"
/>
<artifact:install-provider artifactId="wagon-ssh" version="1.0-beta-2"/>
<input
validargs="y,n"
addproperty="mavenUpload.answer"
>
You are about uploading
${dist.dir.versioned}/freemarker.jar
into the Maven central repostiry sync. directory.
Be sure that's the final (released) variation there,
and that the version number is correct.
Proceed? </input>
<condition property="mavenUpload.yes">
<equals arg1="y" arg2="${mavenUpload.answer}"/>
</condition>
<fail unless="mavenUpload.yes" message="Task aborted by user." />
<input
message="Enter your SourceForge.net user name: "
addproperty="mavenUpload.user"
/>
<input
message="Enter your SourceForge.net password (WILL BE DISPLAYED AS YOU TYPE IT!): "
addproperty="mavenUpload.password"
/>
<artifact:deploy file="${dist.dir}/freemarker.jar">
<remoteRepository url="sftp://web.sourceforge.net/home/groups/f/fr/freemarker/htdocs/maven2">
<authentication
username="${mavenUpload.user},freemarker"
password="${mavenUpload.password}"
/>
</remoteRepository>
<pom file="build/pom.xml" />
<attach file="build/maven-source-attachment.jar" classifier="sources" />
</artifact:deploy>
<echo>**********************************************</echo>
<echo>CLEAR THE SCREEN, NOW! Your password is on it!</echo>
<echo>**********************************************</echo>
</target>
<!-- ================================================================== -->
<!-- Eclipse -->
<!-- ================================================================== -->
<property name="eclipseFeatureFileName" value="org.freemarker.freemarker.feature_${versionForOSGi}.jar" />
<property name="eclipseSourceFeatureFileName" value="org.freemarker.freemarker.source.feature_${versionForOSGi}.jar" />
<property name="eclipsePluginFileName" value="org.freemarker.freemarker_${versionForOSGi}.jar" />
<property name="eclipseSourcePluginFileName" value="org.freemarker.freemarker.source_${versionForOSGi}.jar" />
<target name="eclipse-update-site" depends="jar">
<delete dir="build/eclipse" />
<!-- Create org.freemarker.freemarker feature: -->
<mkdir dir="build/eclipse/freemarker/plugins" />
<copy
file="build/freemarker.jar"
tofile="build/eclipse/freemarker/plugins/org.freemarker.freemarker_${versionForOSGi}.jar"
/>
<mkdir dir="build/eclipse/freemarker/features/tmp" />
<echo file="build/eclipse/freemarker/features/tmp/feature.xml"><![CDATA[<?xml version="1.0"?>
<feature
id="org.freemarker.freemarker"
label="FreeMarker"
version="${versionForOSGi}">
<description url="http://freemarker.org">
Adds barebone FreeMarker as a plug-in (OSGi bundle) to Eclipse.
</description>
<license><!--
-->FreeMarker and this plug-in is provided under the terms and conditions <!--
-->of a BSD-style license, available at http://freemarker.org/LICENSE.txt.<!--
--></license>
<plugin
id="org.freemarker.freemarker"
download-size="0"
install-size="0"
version="${versionForOSGi}"
unpack="false"
/>
</feature>
]]></echo>
<jar
basedir="build/eclipse/freemarker/features/tmp"
destfile="build/eclipse/freemarker/features/${eclipseFeatureFileName}"
/>
<delete dir="build/eclipse/freemarker/features/tmp" />
<!-- Create org.freemarker.freemarker.source feature: -->
<mkdir dir="build/eclipse/freemarker/plugins" />
<jar
basedir="src/main/java" jarfile="build/eclipse/freemarker/plugins/org.freemarker.freemarker.source_${versionForOSGi}.jar"
>
<manifest>
<attribute name="Bundle-SymbolicName" value="${moduleOrg}.${moduleName}.source" />
<attribute name="Bundle-Version" value="${versionForOSGi}" />
<attribute name="Bundle-License" value="BSD-style, see: http://freemarker.org/LICENSE.txt" />
<attribute name="Bundle-Vendor" value="freemarker.org" />
<attribute name="Eclipse-SourceBundle" value='org.freemarker.freemarker;version="${versionForOSGi}";roots:="."' />
</manifest>
</jar>
<mkdir dir="build/eclipse/freemarker/features/tmp" />
<echo file="build/eclipse/freemarker/features/tmp/feature.xml"><![CDATA[<?xml version="1.0"?>
<feature
id="org.freemarker.freemarker.source"
label="FreeMarker source"
version="${versionForOSGi}">
<description url="http://freemarker.org">
Adds source code attachment to the barebone FreeMarker plug-in.
</description>
<license><!--
-->FreeMarker and this plug-in is provided under the terms and conditions <!--
-->of a BSD-style license, available at http://freemarker.org/LICENSE.txt.<!--
--></license>
<plugin
id="org.freemarker.freemarker.source"
download-size="0"
install-size="0"
version="${versionForOSGi}"
unpack="false"
/>
</feature>
]]></echo>
<jar
basedir="build/eclipse/freemarker/features/tmp"
destfile="build/eclipse/freemarker/features/${eclipseSourceFeatureFileName}"
/>
<delete dir="build/eclipse/freemarker/features/tmp" />
<!-- Create site: -->
<echo file="build/eclipse/freemarker/site.xml"><![CDATA[<?xml version="1.0"?>
<site>
<feature url="features/${eclipseFeatureFileName}"
id="org.freemarker.freemarker"
version="${versionForOSGi}">
<category name="core" />
<category name="core-with-sources" />
</feature>
<feature url="features/${eclipseSourceFeatureFileName}"
id="org.freemarker.freemarker.source"
version="${versionForOSGi}">
<category name="core-with-sources" />
</feature>
<category-def name="core" label="FreeMarker core">
<description>
Features that are used as dependencies of other products, but do nothing visible themselves.
</description>
</category-def>
<category-def name="core-with-sources" label="FreeMarker core with sources">
<description>
Features that are used as dependencies of other products, but do nothing visible themselves.
Includes source code attachments.
</description>
</category-def>
</site>
]]></echo>
<echo message="**************************************************************" />
<echo message="The new Eclipse update site is created in:" />
<echo message="${basedir}/build/eclipse/freemarker" />
<echo message="You can use this directory as a local update site in Eclipse," />
<echo message="or if you are an admin who makes a release, you should replace" />
<echo message="http://freemarker.org/eclipse/freemarker with this directory." />
<echo message="**************************************************************" />
</target>
<!-- ================================================================== -->
<!-- Dependency management (keep it exactly identical for all projects) -->
<!-- ================================================================== -->
<target name="_autoget-deps" unless="deps.available">
<antcall target="update-deps" />
</target>
<target name="update-deps"
description="Gets the latest version of the dependencies from the Web"
>
<echo>Getting dependencies...</echo>
<echo>-------------------------------------------------------</echo>
<ivy:settings id="remote" url="http://freemarker.org/repos/ivy/ivysettings-remote.xml" />
<!-- Build an own repository that will serve us even offline: -->
<ivy:retrieve settingsRef="remote" sync="true"
ivypattern=".ivy.part/repo/[organisation]/[module]/ivy-[revision].xml"
pattern=".ivy.part/repo/[organisation]/[module]/[artifact]-[revision].[ext]"
/>
<echo>-------------------------------------------------------</echo>
<echo>*** Successfully acquired dependencies from the Web ***</echo>
<echo>Eclipse users: Now right-click on ivy.xml and Resolve! </echo>
<echo>-------------------------------------------------------</echo>
<!-- Only now that we got all the dependencies will we delete anything. -->
<!-- Thus a net or repo outage doesn't left us without the dependencies. -->
<!-- Save the resolution cache from the soon coming <delete>: -->
<move todir=".ivy.part/update-deps-reso-cache">
<fileset dir=".ivy/update-deps-reso-cache" />
</move>
<!-- Drop all the old stuff: -->
<delete dir=".ivy" />
<!-- And use the new stuff instead: -->
<move todir=".ivy">
<fileset dir=".ivy.part" />
</move>
</target>
<!-- Do NOT call this from 'clean'; offline guys would stuck after that. -->
<target name="clean-deps"
description="Deletes all dependencies"
>
<delete dir=".ivy" />
</target>
<target name="publish-override" depends="jar"
description="Ivy-publishes THIS project locally as an override"
>
<ivy:resolve />
<ivy:publish
pubrevision="${moduleBranch}-branch-head"
artifactspattern="build/[artifact].[ext]"
overwrite="true" forcedeliver="true"
resolver="freemarker-devel-local-override"
>
<artifact name="freemarker" type="jar" ext="jar" />
</ivy:publish>
<delete file="build/ivy.xml" /> <!-- ivy:publish makes this -->
<echo>-------------------------------------------------------</echo>
<echo>*** Don't forget to `ant unpublish-override` later! ***</echo>
</target>
<target name="unpublish-override"
description="Undoes publish-override (made in THIS project)"
>
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override/${moduleOrg}/${moduleName}" />
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override-cache/${moduleOrg}/${moduleName}" />
</target>
<target name="unpublish-override-all"
description="Undoes publish-override-s made in ALL projects"
>
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override" />
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override-cache" />
</target>
<target name="uninstall"
description="Deletes external files created by FreeMarker developement"
>
<delete dir="${user.home}/.ivy2/freemarker-devel-cache" />
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override" />
<delete dir="${user.home}/.ivy2/freemarker-devel-local-override-cache " />
</target>
<target name="report-deps"
description="Creates a HTML document that summarizes the dependencies."
>
<mkdir dir="build/deps-report" />
<ivy:resolve />
<ivy:report todir="build/deps-report" />
</target>
<!--
This meant to be called on the Continuous Integration server, so the
integration builds appear in the freemarker.org public Ivy repository.
The artifacts must be already built.
-->
<target name="server-publish-last-build"
description="(For the Continuous Integration server only)"
>
<delete dir="build/dummy-server-ivy-repo" />
<ivy:resolve />
<ivy:publish
pubrevision="${moduleBranch}-branch-head"
artifactspattern="build/[artifact].[ext]"
overwrite="true" forcedeliver="true"
resolver="server-publishing-target"
>
<artifact name="freemarker" type="jar" ext="jar" />
</ivy:publish>
<delete file="build/ivy.xml" /> <!-- ivy:publish makes this -->
</target>
</project>