Skip to content

Commit d497dfc

Browse files
committed
Merged ANT build scripts to also build and pack plug-ins
1 parent 9c95bd0 commit d497dfc

File tree

5 files changed

+393
-13
lines changed

5 files changed

+393
-13
lines changed

ant/config.ant

+67
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,76 @@
3737
<!-- path to the .jar file that shall be created -->
3838
<property name="jar.vpacker" value="${dist.home}/_VersionPacker.imagine.jar" />
3939

40+
41+
4042
<!-- path to the application .zip file that shall be created -->
4143
<property name="app.imagine" value="${dist.home}/GoldenGateImagine.zip" />
4244

4345
<!-- path to the application .zip file that shall be created -->
4446
<property name="app.vpacker" value="${dist.home}/VersionPacker.imagine.zip" />
47+
48+
49+
50+
<!-- path to the .jar file that shall be created -->
51+
<property name="jar.annotations" value="${dist.home}/Plugins/AnnotationActionProvider.jar" />
52+
53+
<!-- path to the .jar file that shall be created -->
54+
<property name="jar.attributes" value="${dist.home}/Plugins/AttributeToolProvider.jar" />
55+
56+
<!-- path to the .jar file that shall be created -->
57+
<property name="jar.basicimageedit" value="${dist.home}/Plugins/BasicImageEditToolProvider.jar" />
58+
59+
<!-- path to the .jar file that shall be created -->
60+
<property name="jar.navigation" value="${dist.home}/Plugins/NavigationProvider.jar" />
61+
62+
<!-- path to the .jar file that shall be created -->
63+
<property name="jar.regions" value="${dist.home}/Plugins/RegionActionProvider.jar" />
64+
65+
<!-- path to the .jar file that shall be created -->
66+
<property name="jar.text" value="${dist.home}/Plugins/TextActionProvider.jar" />
67+
68+
<!-- path to the .jar file that shall be created -->
69+
<property name="jar.textblocks" value="${dist.home}/Plugins/TextBlockActionProvider.jar" />
70+
71+
<!-- path to the .jar file that shall be created -->
72+
<property name="jar.textstreams" value="${dist.home}/Plugins/TextStreamActionProvider.jar" />
73+
74+
<!-- path to the .jar file that shall be created -->
75+
<property name="jar.docmeatdata" value="${dist.home}/Plugins/DocumentMetaDataEditor.jar" />
76+
77+
<!-- path to the .jar file that shall be created -->
78+
<property name="jar.captioncitations" value="${dist.home}/Plugins/CaptionCitationHandler.jar" />
79+
80+
<!-- path to the .jar file that shall be created -->
81+
<property name="jar.docstructure" value="${dist.home}/Plugins/DocumentStructureDetector.jar" />
82+
83+
<!-- path to the .jar file that shall be created -->
84+
<property name="jar.fonts" value="${dist.home}/Plugins/FontEditor.jar" />
85+
86+
<!-- path to the .jar file that shall be created -->
87+
<property name="jar.urldroplinker" value="${dist.home}/Plugins/UrlDropLinker.jar" />
88+
89+
<!-- path to the .jar file that shall be created -->
90+
<property name="jar.tables" value="${dist.home}/Plugins/TableActionProvider.jar" />
91+
92+
<!-- path to the .jar file that shall be created -->
93+
<property name="jar.dpimtools" value="${dist.home}/Plugins/DocumentProcessorImTools.jar" />
94+
95+
<!-- path to the .jar file that shall be created -->
96+
<property name="jar.objectlist" value="${dist.home}/Plugins/ObjectListProvider.jar" />
97+
98+
<!-- path to the .jar file that shall be created -->
99+
<property name="jar.blockocr" value="${dist.home}/Plugins/BlockOcrProvider.jar" />
100+
101+
<!-- path to the .jar file that shall be created -->
102+
<property name="jar.ocrcheck" value="${dist.home}/Plugins/OcrChecker.jar" />
103+
104+
<!-- path to the .jar file that shall be created -->
105+
<property name="jar.xmlview" value="${dist.home}/Plugins/XmlViewer.jar" />
106+
107+
<!-- path to the .jar file that shall be created -->
108+
<property name="jar.docstyleprov" value="${dist.home}/Plugins/DocumentStyleProvider.jar" />
109+
110+
<!-- path to the .jar file that shall be created -->
111+
<property name="jar.docstyleman" value="${dist.home}/Plugins/DocumentStyleManager.jar" />
45112
</project>

ant/dir.ant

+8
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<mkdir dir="${build.home}/classes" />
1414
<mkdir dir="${dist.home}" />
1515
<mkdir dir="${dist.home}/Plugins" />
16+
<mkdir dir="${dist.home}/Plugins/Bin" />
1617
</target>
1718

1819
<!-- more or less the reverse of it, delete all the directories again -->
@@ -43,5 +44,12 @@
4344
<include name="ImageMarkup.jar" />
4445
</fileset>
4546
</copy>
47+
48+
<!-- copy required libraries -->
49+
<copy todir="${dist.home}/Plugins/Bin" overwrite="true" verbose="false">
50+
<fileset dir="${lib.home}">
51+
<include name="BibRefUtils.jar" />
52+
</fileset>
53+
</copy>
4654
</target>
4755
</project>

0 commit comments

Comments
 (0)