forked from uPortal-Project/uPortal
-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.xml
1535 lines (1339 loc) · 66.8 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
<!--
Licensed to Jasig under one or more contributor license
agreements. See the NOTICE file distributed with this work
for additional information regarding copyright ownership.
Jasig licenses this file to you under the Apache License,
Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a
copy of the License at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!--
| Detailed help documentation lives in docs/antHelp.txt, please refer to this file or
| run 'ant help' for usage of this file.
|
| Comments in this file should be targeted to the maintenance of the build script.
+-->
<project name="uPortal" default="help" basedir="." xmlns:up="urn:up-util-ant" xmlns:artifact="urn:maven-artifact-ant">
<property file="${basedir}/build.properties" />
<!--
| Determine if a named environment has been specified in the command.
| Examples: dev, test, prod, local, etc.
+-->
<condition property="environment.token" value="${env}">
<isset property="env" />
</condition>
<property name="environment.token" value="local" />
<fail message="filters/${environment.token}.properties does not exist, please copy local.properties and fill in your settings.">
<condition>
<not>
<available file="${basedir}/filters/${environment.token}.properties" />
</not>
</condition>
</fail>
<!--
| Load the build properties before the next fail tests since they check properties provided
| by the file.
+-->
<property environment="env" />
<property file="${basedir}/filters/${environment.token}.properties" />
<property name="targetdir" value="${basedir}/target"/>
<!--
| Setup temp directories
+-->
<property name="jasig.tmpdir" value="${targetdir}/tmp" />
<mkdir dir="${jasig.tmpdir}" />
<tempfile property="parentPomInstallMarker.file" destdir="${jasig.tmpdir}" prefix="uportal-parent.pom-" suffix="-marker" deleteonexit="true" />
<!-- PortalShell Script File for run -->
<tempfile property="portal-shell-script" destdir="${jasig.tmpdir}" prefix="upshell_" suffix=".groovy" deleteonexit="true" />
<!--
| Define maven.home and maven.settings variables if they are not set
+-->
<condition property="maven.home" value="${env.M2_HOME}">
<and>
<not>
<isset property="maven.home" />
</not>
<available file="${env.M2_HOME}" />
</and>
</condition>
<fail message="maven.home=${maven.home} does not exist.${line.separator}Either set maven.home in build.properties or set the M2_HOME environment variable.">
<condition>
<not>
<available file="${maven.home}" />
</not>
</condition>
</fail>
<condition property="maven.settings" value="${user.home}/.ant/settings.xml">
<and>
<not>
<isset property="maven.settings" />
</not>
<available file="${user.home}/.ant/settings.xml" />
</and>
</condition>
<condition property="maven.settings" value="${user.home}/.m2/settings.xml">
<and>
<not>
<isset property="maven.settings" />
</not>
<available file="${user.home}/.m2/settings.xml" />
</and>
</condition>
<condition property="maven.settings" value="${maven.home}/conf/settings.xml">
<and>
<not>
<isset property="maven.settings" />
</not>
<available file="${maven.home}/conf/settings.xml" />
</and>
</condition>
<fail message="maven.settings=${maven.settings} does not exist.${line.separator}Either set maven.settings in build.properties or ensure one of the following files exist:${line.separator} - ${user.home}/.ant/settings.xml${line.separator} - ${user.home}/.m2/settings.xml${line.separator} - ${maven.home}/conf/settings.xml">
<condition>
<not>
<available file="${maven.settings}" />
</not>
</condition>
</fail>
<!--
| Properties that describe the maven project
+-->
<property name="bootstrap.dir" value="${basedir}/bootstrap" />
<property name="uportal-search-api.dir" value="${basedir}/uportal-search-api" />
<property name="uportal-war.dir" value="${basedir}/uportal-war" />
<property name="uportal-portlets-overlay.dir" value="${basedir}/uportal-portlets-overlay" />
<property name="uportal-ear.dir" value="${basedir}/uportal-ear" />
<import file="${bootstrap.dir}/build_includes.xml" />
<!-- ============================== Public Targets ============================== -->
<target name="help" description="Prints information about using this ant build file.">
<loadfile property="helpMessage" srcFile="docs/antHelp.txt" />
<echo message="${helpMessage}" />
</target>
<target name="initportal" depends="prodPrompt" description="Runs all the targets necessary to deploy the portal and prepare the portal database">
<echo message="Initializing uPortal" />
<antcall target="deploy-ear">
<param name="removeExisting" value="true" />
</antcall>
<antcall target="initdb">
<param name="skipPackage" value="true" />
</antcall>
<echo message="Finished initializing uPortal" />
</target>
<target name="initdb" depends="prodPrompt" description="Drops all tables, then runs all the targets necessary prepare the portal database">
<echo message="Initializing database" />
<up-shell-batch>
<antcall target="db" />
<antcall target="db-hibernate" />
<antcall target="db-import">
<param name="skipPackage" value="true" />
</antcall>
</up-shell-batch>
<echo message="Finished initializing database" />
</target>
<target name="db-update" depends="prodPrompt" description="Updates an existing database from one patch version to the next">
<antcall target="db-hibernate-update" />
</target>
<target name="db-ddl" depends="prodPrompt" description="Create a SQL script of commands to drop and create the uPortal database">
<fail unless="ddlFile">
You must specify a 'ddlFile' parameter (-DddlFile={uPortal.ddl})
</fail>
<tempfile property="db-ddl-file" destdir="${targetdir}" prefix="db-ddl." suffix=".sql" />
<tempfile property="db-hibernate-portal-ddl-file" destdir="${targetdir}" prefix="db-hibernate-portal-ddl." suffix=".sql" />
<tempfile property="db-hibernate-aggr-events-ddl-file" destdir="${targetdir}" prefix="db-hibernate-aggr-events-ddl." suffix=".sql" />
<tempfile property="db-hibernate-raw-events-ddl-file" destdir="${targetdir}" prefix="db-hibernate-raw-events-ddl." suffix=".sql" />
<echo message="Creating database DDL and writing to ${ddlFile}" />
<up-shell-batch>
<mkdir dir="${targetdir}" />
<antcall target="db">
<param name="scriptfile" value="${db-ddl-file}" />
</antcall>
<antcall target="db-hibernate-portal">
<param name="export" value="false" />
<param name="outputFile" value="${db-hibernate-portal-ddl-file}" />
</antcall>
<antcall target="db-hibernate-raw-events">
<param name="export" value="false" />
<param name="outputFile" value="${db-hibernate-raw-events-ddl-file}" />
</antcall>
<antcall target="db-hibernate-aggr-events">
<param name="export" value="false" />
<param name="outputFile" value="${db-hibernate-aggr-events-ddl-file}" />
</antcall>
</up-shell-batch>
<concat destfile="${ddlFile}" fixlastline="yes">
<fileset file="${db-ddl-file}" />
<fileset file="${db-hibernate-portal-ddl-file}" />
<fileset file="${db-hibernate-raw-events-ddl-file}" />
<fileset file="${db-hibernate-aggr-events-ddl-file}" />
</concat>
<echo message="Finished creating database DDL: ${ddlFile}" />
</target>
<target name="db-hibernate" depends="prodPrompt" description="Drops then creates Hibernate managed tables">
<up-shell-batch>
<antcall target="db-hibernate-portal" />
<antcall target="db-hibernate-raw-events" />
<antcall target="db-hibernate-aggr-events" />
<antcall target="db-hibernate-portlets" />
</up-shell-batch>
</target>
<target name="db-hibernate-update" depends="prodPrompt" description="Makes required changes to the portal database for patch upgrades for both the portal and event schemas">
<up-shell-batch>
<antcall target="db-hibernate-portal-update" />
<antcall target="db-hibernate-raw-events-update" />
<antcall target="db-hibernate-aggr-events-update" />
</up-shell-batch>
</target>
<target name="db-hibernate-portal" depends="prodPrompt" description="Drops then creates Hibernate managed tables for the portal">
<property name="databaseQualifier" value="PortalDb" />
<property name="export" value="true" />
<property name="drop" value="true" />
<property name="create" value="true" />
<property name="outputFile" value=" " />
<groovy-safe-path property="outputFileEscaped" input="${outputFile}" />
<echo>Creating HBM2DDL Script</echo>
<if>
<equals arg1="${drop}" arg2="true" />
<then>
<echo file="${portal-shell-script}" append="true">
//hibernateDrop(String target, String databaseQualifier, boolean export, String outputFile)
portalShellBuildHelper.hibernateDrop("db-hibernate",
'${databaseQualifier}',
Boolean.parseBoolean('${export}'),
/${outputFileEscaped}/);
</echo>
</then>
</if>
<if>
<equals arg1="${create}" arg2="true" />
<then>
<echo file="${portal-shell-script}" append="true">
//hibernateCreate(String target, String databaseQualifier, boolean export, String outputFile)
portalShellBuildHelper.hibernateCreate("db-hibernate",
'${databaseQualifier}',
Boolean.parseBoolean('${export}'),
/${outputFileEscaped}/);
</echo>
</then>
</if>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="db-hibernate-portal-update" depends="prodPrompt" description="Makes required changes to the portal database for patch upgrades for the portal schema">
<property name="databaseQualifier" value="PortalDb" />
<property name="export" value="true" />
<property name="outputFile" value=" " />
<groovy-safe-path property="outputFileEscaped" input="${outputFile}" />
<echo>Creating HBM2DDL Update Script</echo>
<echo file="${portal-shell-script}" append="true">
logger.info("");
logger.info("");
logger.info("Update Database " + '${databaseQualifier}');
//hibernateUpdate(String target, String databaseQualifier, boolean export, String outputFile)
portalShellBuildHelper.hibernateUpdate("db-hibernate-update",
'${databaseQualifier}',
Boolean.parseBoolean('${export}'),
/${outputFileEscaped}/);
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="db-hibernate-stats" depends="prodPrompt">
<echo level="warning">DEPRECATED: Use db-hibernate-raw-events and db-hibernate-aggr-events instead</echo>
<up-shell-batch>
<antcall target="db-hibernate-raw-events" />
<antcall target="db-hibernate-aggr-events" />
</up-shell-batch>
</target>
<target name="db-hibernate-stats-update" depends="prodPrompt">
<echo level="warning">DEPRECATED: Use db-hibernate-raw-events-update and db-hibernate-aggr-events-update instead</echo>
<up-shell-batch>
<antcall target="db-hibernate-raw-events-update" />
<antcall target="db-hibernate-aggr-events-update" />
</up-shell-batch>
</target>
<target name="db-hibernate-raw-events" depends="prodPrompt" description="Drops then creates Hibernate managed tables used for raw portal event storage">
<antcall target="db-hibernate-portal">
<param name="databaseQualifier" value="RawEventsDb" />
</antcall>
</target>
<target name="db-hibernate-raw-events-update" depends="prodPrompt" description="Makes required changes to the portal database for patch upgrades for raw portal event storage">
<antcall target="db-hibernate-portal-update">
<param name="databaseQualifier" value="RawEventsDb" />
</antcall>
</target>
<target name="db-hibernate-aggr-events" depends="prodPrompt" description="Drops then creates Hibernate managed tables used for aggregate portal event storage">
<antcall target="db-hibernate-portal">
<param name="databaseQualifier" value="AggrEventsDb" />
</antcall>
</target>
<target name="db-hibernate-aggr-events-update" depends="prodPrompt" description="Makes required changes to the portal database for patch upgrades for aggregate portal event storage">
<antcall target="db-hibernate-portal-update">
<param name="databaseQualifier" value="AggrEventsDb" />
</antcall>
</target>
<target name="db-hibernate-portlets" depends="prodPrompt" description="Drops then creates Hibernate managed tables for bundled portlets">
<echo>Creating tables for bundled portlets [skipPackage=${skipPackage}]</echo>
<condition property="packageArg" value="-Djasig.ignore">
<equals arg1="${skipPackage}" arg2="true" />
</condition>
<property name="packageArg" value="package" />
<antcall target="mvn">
<param name="pomDir" value="${basedir}/uportal-portlets-overlay" />
<!-- In case target is run separately, insure the project is packaged so all filtered substitutions occur -->
<param name="goal" value="${packageArg}" />
<param name="goal1" value="db-init" />
</antcall>
</target>
<target name="db" depends="prodPrompt" description="Loads legacy database tables and data. See: initdb">
<property name="tablefile" value="/properties/db/tables.xml" />
<property name="datafile" value="/properties/db/data.xml" />
<property name="scriptfile" value=" " />
<property name="droptables" value="true" />
<property name="createtables" value="true" />
<property name="populatetables" value="true" />
<groovy-safe-path property="tablefileEscaped" input="${tablefile}" />
<groovy-safe-path property="datafileEscaped" input="${datafile}" />
<groovy-safe-path property="scriptfileEscaped" input="${scriptfile}" />
<echo>Creating DBLoader Script</echo>
<echo file="${portal-shell-script}" append="true">
//db(String target, String tablesFile, String dataFile, String scriptFile, boolean dropTables, boolean createTables, boolean populateTables)
portalShellBuildHelper.db("db",
/${tablefileEscaped}/,
/${datafileEscaped}/,
/${scriptfileEscaped}/,
Boolean.parseBoolean('${droptables}'),
Boolean.parseBoolean('${createtables}'),
Boolean.parseBoolean('${populatetables}'));
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="db-import-required" depends="prodPrompt" description="Imports the required data files to the database">
<up-shell-batch>
<antcall target="data-import">
<param name="dir" value="${basedir}/uportal-war/src/main/data/required_entities" />
</antcall>
</up-shell-batch>
</target>
<target name="db-import-default" depends="prodPrompt" description="Imports the default data files to the database">
<!-- Use build.properties to override the entities.location setting -->
<property name="default_entities.location" value="uportal-war/src/main/data/default_entities" />
<up-shell-batch>
<antcall target="data-import">
<param name="dir" value="${basedir}/${default_entities.location}" />
</antcall>
</up-shell-batch>
</target>
<target name="db-import-quickstart" depends="prodPrompt" description="Imports the quickstart data files to the database">
<!-- Use build.properties to override the entities.location setting -->
<property name="quickstart_entities.location" value="uportal-war/src/main/data/quickstart_entities" />
<up-shell-batch>
<antcall target="data-import">
<param name="dir" value="${basedir}/${quickstart_entities.location}" />
</antcall>
</up-shell-batch>
</target>
<target name="db-import" depends="prodPrompt" description="Imports the default XML files to the database">
<up-shell-batch>
<antcall target="db-import-required" />
<if>
<not>
<isset property="noDefaultData" />
</not>
<then>
<antcall target="db-import-default" />
</then>
</if>
<if>
<not>
<isset property="noQuickstartData" />
</not>
<then>
<antcall target="db-import-quickstart" />
</then>
</if>
</up-shell-batch>
<antcall target="portlet-data-import" />
</target>
<target name="dbtest" description="Displays information about the database defined in rdbm.properties">
<echo>Creating DBTest Script</echo>
<echo file="${portal-shell-script}" append="true">
logger.info("");
logger.info("");
portalShellBuildHelper.dbTest();
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="up-shell" description="Run a uPortal Groovy Shell. Interactive or scripted using -Dscript=">
<if>
<not>
<istrue value="${skip-up-shell-execution}" />
</not>
<then>
<uportal-war-macro>
<if>
<and>
<isset property="script" />
</and>
<then>
<tempfile property="executed-portal-shell-script" destdir="${targetdir}" prefix="upshell_" suffix=".groovy" />
<copy file="${script}" tofile="${executed-portal-shell-script}" />
<java fork="true" failonerror="true" dir="${basedir}" classname="org.jasig.portal.shell.PortalShell">
<jvmarg value="-XX:MaxPermSize=256m"/>
<sysproperty key="log4j.configuration" value="command-line.log4j.properties" />
<classpath refid="uportal-war-full.classpath" />
<arg value="-s" />
<arg value="${script}" />
</java>
</then>
<else>
<echo>Interactive Mode</echo>
<java fork="true" failonerror="true" dir="${basedir}" classname="org.jasig.portal.shell.PortalShell">
<sysproperty key="log4j.configuration" value="command-line.log4j.properties" />
<classpath refid="uportal-war-full.classpath" />
</java>
</else>
</if>
</uportal-war-macro>
</then>
</if>
</target>
<target name="data-list" description="Lists portal data types and portal data for a type. Use the -Dtype parameter to specify a specific type">
<property name="type" value=" " />
<echo file="${portal-shell-script}" append="true">
//dataList(String target, String type)
portalShellBuildHelper.dataList("data-list", '${type}');
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="data-export" description="Exports the specified entity or entities to XML on the file system">
<fail unless="dir">
You must specify a 'dir' parameter (-Ddir={some/directory})
</fail>
<property name="type" value=" " />
<property name="sysid" value=" " />
<groovy-safe-path property="dirFullEscaped" input="${dir}" />
<groovy-safe-path property="targetDirEscaped" input="${targetdir}" />
<echo>Creating Data Export Script</echo>
<echo file="${portal-shell-script}" append="true">
//dataExport(String target, String dataDir, String type, String sysid, String logDir)
portalShellBuildHelper.dataExport("data-export",
/${dirFullEscaped}/,
'${type}',
'${sysid}',
/${targetDirEscaped}/);
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="portlet-data-import" depends="prodPrompt" description="Imports the default portlet-specific data">
<echo>Importing portlet-specific data [skipPackage=${skipPackage}]</echo>
<condition property="packageArg" value="-Djasig.ignore">
<equals arg1="${skipPackage}" arg2="true" />
</condition>
<property name="packageArg" value="package" />
<antcall target="mvn">
<param name="pomDir" value="${basedir}/uportal-portlets-overlay" />
<!-- In case target is run separately, insure the project is packaged so all filtered substitutions occur -->
<param name="goal" value="${packageArg}" />
<param name="goal1" value="data-import" />
</antcall>
</target>
<target name="data-import" depends="prodPrompt" description="Imports the specified XML file or files">
<if>
<not>
<xor>
<isset property="dir" />
<isset property="file" />
<isset property="archive" />
</xor>
</not>
<then>
<fail>Either '-Ddir' or '-Dfile' or '-Darchive' must be specified for data import</fail>
</then>
</if>
<property name="pattern" value=" " />
<property name="file" value=" " />
<property name="dir" value=" " />
<property name="archive" value=" " />
<groovy-safe-path property="dirFullEscaped" input="${dir}" />
<groovy-safe-path property="fileFullEscaped" input="${file}" />
<groovy-safe-path property="archiveFullEscaped" input="${archive}" />
<groovy-safe-path property="targetDirEscaped" input="${targetdir}" />
<echo>Creating Data Import Script</echo>
<echo file="${portal-shell-script}" append="true">
//dataImport(String target, String dataDir, String pattern, String file, String archive, String logDir)
portalShellBuildHelper.dataImport("data-import",
/${dirFullEscaped}/,
/${pattern}/,
/${fileFullEscaped}/,
/${archiveFullEscaped}/,
/${targetDirEscaped}/);
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="data-delete" depends="prodPrompt" description="Deletes the specified entity">
<if>
<not>
<and>
<isset property="type" />
<isset property="sysid" />
</and>
</not>
<then>
<fail>Both '-Dtype' and '-Dsysid' must be specified for data delete. Use 'ant data-list' to determine available data types</fail>
</then>
</if>
<groovy-safe-path property="dirFullEscaped" input="${dir}" />
<echo>Creating Data Delete Script</echo>
<echo file="${portal-shell-script}" append="true">
//dataDelete(String target, String type, String sysid)
portalShellBuildHelper.dataDelete("data-delete",
'${type}',
'${sysid}');
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="clean-shared" depends="checkForTomcat" description="Removes ALL shared libraries from the servlet container.">
<mkdir dir="${server.base}/shared/lib" />
<delete>
<fileset dir="${server.base}/shared/lib">
<include name="*" />
</fileset>
</delete>
</target>
<target name="clean-tomcat" depends="checkForTomcat" description="Removes the deployed uPortal from the servlet container">
<uportal-parent-macro>
<!-- Clean out uPortal from Tomcat -->
<artifact:pom file="${uportal-war.dir}/pom.xml" id="uportal-war.pom" settingsFile="${maven.settings}" inheritAllProperties="false" />
<property name="destDir" value="${server.webapps}/${uportal-war.pom.build.finalName}" />
<echo>Deleting '${destDir}'</echo>
<delete dir="${destDir}" />
</uportal-parent-macro>
</target>
<target name="clean" description="Runs 'mvn clean'">
<!-- Execute the mvn clean lifecycle -->
<antcall target="mvn">
<param name="pomDir" value="${basedir}" />
<param name="goal" value="clean" />
</antcall>
</target>
<target name="deploy-ear" depends="checkForTomcat" description="Deploy uPortal and dependent libraries and portlets to the servlet container">
<uportal-ear-macro>
<echo message=" extractWars=${extractWars}" />
<echo message="removeExisting=${removeExisting}" />
<echo message=" cleanShared=${cleanShared}" />
<if>
<equals arg1="${cleanShared}" arg2="true" />
<then>
<antcall target="clean-shared" />
</then>
</if>
<!--
| Due to http://jira.codehaus.org/browse/MANTTASKS-246, use maven-artifact-macro to insure all
| transient dependencies are properly downloaded by a maven invocation first and we don't get corrupt
| artifacts in the local repo from artifact:dependencies. Conveniently this also defines a classpath
| property based on the module project's pom.
+-->
<fileset id="uportal-build.fsid" file="${basedir}/build.xml" />
<maven-artifact-macro project-name="uportal-ant" project-path="${bootstrap.dir}/uportal-ant-tasks" checkfilesid="uportal-build.fsid">
<typedef resource="org/jasig/portal/ant/antlib.xml" uri="urn:up-util-ant">
<classpath>
<path refid="uportal-ant.classpath" />
</classpath>
</typedef>
</maven-artifact-macro>
<mkdir dir="${server.base}/shared/lib" />
<up:tomcatEarDeploy ear="${uportal-ear.artifact}" catalinaBase="${server.base}" webAppsDir="${server.webapps}" extractWars="${extractWars}" removeExistingDirectories="${removeExisting}" />
</uportal-ear-macro>
</target>
<target name="deploy-war" depends="checkForTomcat" description="Deploy the uPortal web application to the servlet container">
<uportal-war-macro>
<antcall target="fastWarDeploy">
<param name="warPath" value="${uportal-war.artifact}" />
</antcall>
</uportal-war-macro>
</target>
<target name="deployPortletApp" depends="checkForTomcat" description="Deploys a portlet application">
<!-- Check arguments -->
<fail message="'-DportletApp=[WAR File]' must be specified">
<condition>
<not>
<isset property="portletApp" />
</not>
</condition>
</fail>
<if>
<available file="${user.dir}/${portletApp}" />
<then>
<property name="portletAppPath" location="${user.dir}/${portletApp}" />
</then>
<else>
<property name="portletAppPath" location="${portletApp}" />
</else>
</if>
<fail message="portletApp '${portletAppPath}' does not exist">
<condition>
<not>
<available file="${portletAppPath}" />
</not>
</condition>
</fail>
<basename property="war.filename" file="${portletAppPath}" />
<uportal-parent-macro>
<!--
| Due to http://jira.codehaus.org/browse/MANTTASKS-246, use maven-artifact-macro to insure all
| transient dependencies are properly downloaded by a maven invocation first and we don't get corrupt
| artifacts in the local repo from artifact:dependencies. Conveniently this also defines a classpath
| property based on the module project's pom.
+-->
<fileset id="uportal-build.fsid" file="${basedir}/build.xml" />
<maven-artifact-macro project-name="pluto-assembler" project-path="${bootstrap.dir}/pluto-assembler" checkfilesid="uportal-build.fsid">
<taskdef classname="org.apache.pluto.ant.AssembleTask" name="assemblePortlet">
<classpath>
<path refid="pluto-assembler.classpath" />
</classpath>
</taskdef>
</maven-artifact-macro>
</uportal-parent-macro>
<assemblePortlet destdir="${jasig.tmpdir}" war="${portletAppPath}" />
<antcall target="fastWarDeploy">
<param name="warPath" value="${jasig.tmpdir}/${war.filename}" />
</antcall>
<delete file="${jasig.tmpdir}/${war.filename}" />
</target>
<target name="md5passwd" depends="prodPrompt" description="Creates a user in the UP_PERSON_DIR table">
<property name="username" value="" />
<input message="Enter userId:" addproperty="user.id" defaultvalue="${username}"/>
<input message="Enter password:" addproperty="user.pw1">
<handler classname="org.apache.tools.ant.input.SecureInputHandler" />
</input>
<input message="Verify password:" addproperty="user.pw2">
<handler classname="org.apache.tools.ant.input.SecureInputHandler" />
</input>
<fail message="Passwords do not match.">
<condition>
<not>
<equals arg1="${user.pw1}" arg2="${user.pw2}"/>
</not>
</condition>
</fail>
<echo file="${portal-shell-script}" append="true">
logger.info("");
logger.info("");
passwordUpdateTool.updatePassword('${user.id}', /${user.pw1}/, true);
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="deluser" depends="prodPrompt" description="Delete traces of a user from the portal database">
<fail unless="user">
You must specify a 'user' parameter (-Duser={jdoe})
</fail>
<echo>Deleting user ${user}</echo>
<echo file="${portal-shell-script}" append="true">
//deleteUser(String target, String user)
portalShellBuildHelper.deleteUser("deluser", '${user}');
</echo>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</target>
<target name="hsql" description="Start a HSQLDB instance consistent with the default RDBMS requirements of uPortal">
<property name="spawn" value="false" />
<condition property="failonerror" value="false">
<equals arg1="${spawn}" arg2="true" />
</condition>
<property name="failonerror" value="true" />
<fail message="There is already a service running on port ${environment.build.hsql.port}, please shut it down before starting the quickstart">
<condition>
<socket server="localhost" port="${environment.build.hsql.port}" />
</condition>
</fail>
<uportal-parent-macro>
<!--
| Due to http://jira.codehaus.org/browse/MANTTASKS-246, use maven-artifact-macro to insure all
| transient dependencies are properly downloaded by a maven invocation first and we don't get corrupt
| artifacts in the local repo from artifact:dependencies. Conveniently this also defines a classpath
| property based on the module project's pom.
+-->
<maven-artifact-macro project-name="hsql" project-path="${bootstrap.dir}/hsqldb">
<!-- no subtasks needed -->
</maven-artifact-macro>
<property name="database" value="file:${basedir}/data/uPortal;hsqldb.tx=mvcc" />
<property name="port" value="${environment.build.hsql.port}" />
<echo message="Starting HSQL on ${port}" />
<echo message="Using: ${database}" />
<java fork="true" spawn="${spawn}" maxmemory="160M" dir="${basedir}" classname="org.hsqldb.server.Server" failonerror="${failonerror}">
<classpath refid="hsql.classpath" />
<arg value="--database.0" />
<arg value="${database}" />
<arg value="--dbname.0" />
<arg value="uPortal" />
<arg value="--address" />
<arg value="localhost" />
<arg value="--port" />
<arg value="${port}" />
</java>
</uportal-parent-macro>
<if>
<equals arg1="${spawn}" arg2="true" />
<then>
<!-- wait for hsql to start -->
<echo>Waiting for HSQL to Start, checking port ${environment.build.hsql.port}</echo>
<waitfor maxwait="1" maxwaitunit="minute" checkevery="1" checkeveryunit="second" timeoutproperty="hsql-not-started">
<socket server="localhost" port="${environment.build.hsql.port}" />
</waitfor>
<fail if="hsql-not-started" message="HSQL Failed To Start" />
<echo>HSQL Started</echo>
</then>
</if>
</target>
<target name="hsql-shutdown" description="Compacts then cleanly shuts down hsql, useful if the 'hsql' task was run with '-Dspawn=true'">
<uportal-parent-macro>
<!--
| Due to http://jira.codehaus.org/browse/MANTTASKS-246, use maven-artifact-macro to insure all
| transient dependencies are properly downloaded by a maven invocation first and we don't get corrupt
| artifacts in the local repo from artifact:dependencies. Conveniently this also defines a classpath
| property based on the module project's pom.
+-->
<maven-artifact-macro project-name="hsql" project-path="${bootstrap.dir}/hsqldb">
<!-- no subtasks needed -->
</maven-artifact-macro>
<copy file="${bootstrap.dir}/hsqldb.sqltool.rc.sample" tofile="${bootstrap.dir}/hsqldb.sqltool.rc" overwrite="true">
<filterset>
<filter token="environment.build.hibernate.connection.url" value="${environment.build.hibernate.connection.url}" />
</filterset>
</copy>
<echo message="Stopping HSQL" />
<trycatch reference="hsql-shutdown.exceptionId">
<try>
<java fork="true" maxmemory="8M" dir="${basedir}" classname="org.hsqldb.cmdline.SqlTool" timeout="5000" errorproperty="hsql-shutdown.err.out" failonerror="true">
<classpath refid="hsql.classpath" />
<arg value="--rcFile" />
<arg value="${bootstrap.dir}/hsqldb.sqltool.rc" />
<arg value="--sql" />
<arg value="shutdown compact;" />
<arg value="uPortalDb" />
</java>
</try>
<catch>
<if>
<contains string="${hsql-shutdown.err.out}" substring="java.net.ConnectException" />
<then>
<echo>HSQL is not running</echo>
</then>
<elseif>
<contains string="${hsql-shutdown.err.out}" substring="java.io.EOFException" />
<!-- See http://sourceforge.net/tracker/?func=detail&aid=3565829&group_id=23316&atid=378131 -->
<then>
<echo>FYI HSQL shutdown threw java.io.EOFException but we believe did shut down correctly.</echo>
</then>
</elseif>
<else>
<echo>${hsql-shutdown.err.out}</echo>
<throw refid="hsql-shutdown.exceptionId" />
</else>
</if>
</catch>
</trycatch>
</uportal-parent-macro>
<echo>Waiting for HSQL to stop, checking port ${environment.build.hsql.port}</echo>
<waitfor maxwait="1" maxwaitunit="minute" checkevery="1" checkeveryunit="second" timeoutproperty="hsql-not-stopped">
<not>
<socket server="localhost" port="${environment.build.hsql.port}" />
</not>
</waitfor>
<if>
<isset property="hsql-not-stopped"/>
<then>
<echo level="warn">HSQL Failed To Stop</echo>
</then>
</if>
<echo>HSQL Stopped</echo>
</target>
<!-- ============================== Utility Targets ============================== -->
<target name="sync-schemas">
<fail unless="schemaDir">
You must specify a 'schemaDir' parameter (-DschemaDir={/path/to/jasig/schemas/uportal/})
NOTE THE TRAILING SLASH IS IMPORTANT
</fail>
<exec executable="rsync">
<arg value="-avC" />
<arg value="${basedir}/uportal-war/src/main/resources/xsd/" />
<arg value="${schemaDir}" />
</exec>
</target>
<!--
| Runs up-shell passing in the default shell script filename as the targeted script
+-->
<target name="up-shell-default">
<if>
<not>
<istrue value="${skip-up-shell-execution}" />
</not>
<then>
<antcall target="up-shell">
<param name="script" value="${portal-shell-script}" />
</antcall>
</then>
</if>
</target>
<!--
| Utility to deploy a WAR to the servlet container. The delete and the replacement happen
| as close together as possible.
+-->
<target name="fastWarDeploy">
<fail message="'-DwarPath=[WAR File]' must be specified">
<condition>
<not>
<isset property="warPath" />
</not>
</condition>
</fail>
<basename property="war.contextname" file="${warPath}" suffix=".war" />
<property name="war.dest" value="${server.webapps}/${war.contextname}" />
<echo message=" extractWars=${extractWars}" />
<echo message="removeExisting=${removeExisting}" />
<if>
<os family="windows" />
<then>
<if>
<istrue value="${removeExisting}" />
<then>
<delete dir="${war.dest}" failonerror="false" />
<delete file="${war.dest}.war" failonerror="false" />
</then>
</if>
<if>
<istrue value="${extractWars}" />
<then>
<mkdir dir="${war.dest}" />
<unwar dest="${war.dest}" src="${warPath}" overwrite="true" />
</then>
<else>
<copy file="${warPath}" todir="${server.webapps}" />
</else>
</if>
</then>
<else>
<if>
<istrue value="${extractWars}" />
<then>
<property name="tempWarDir" value="${jasig.tmpdir}/${war.contextname}" />
<delete dir="${tempWarDir}" />
<mkdir dir="${tempWarDir}" />
<unwar dest="${tempWarDir}" src="${warPath}" overwrite="true" />
<if>
<istrue value="${removeExisting}" />
<then>
<delete dir="${war.dest}" />
<delete file="${war.dest}.war" />
</then>
</if>
<echo message="Moving ${tempWarDir} to ${server.webapps}" />
<move todir="${server.webapps}" file="${tempWarDir}" />
</then>
<else>
<if>
<istrue value="${removeExisting}" />