Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
bbc3c83f
Commit
bbc3c83f
authored
Jul 25, 2016
by
Dave Cridland
Committed by
GitHub
Jul 25, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #599 from guusdk/OF-1149_Build_improvements
OF-1149: Improve build speed
parents
645e3de3
25f66a6c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
285 additions
and
296 deletions
+285
-296
build.xml
build/build.xml
+285
-296
No files found.
build/build.xml
View file @
bbc3c83f
...
@@ -102,7 +102,6 @@
...
@@ -102,7 +102,6 @@
<property
name=
"anttools.src.dir"
value=
"${src.dir}/tools"
/>
<property
name=
"anttools.src.dir"
value=
"${src.dir}/tools"
/>
<property
name=
"anttools.target.dir"
value=
"${work.dir}/tools"
/>
<property
name=
"anttools.target.dir"
value=
"${work.dir}/tools"
/>
<property
name=
"copy.dbscripts"
value=
"true"
/>
<property
name=
"copy.dbscripts"
value=
"true"
/>
<property
name=
"overwrite"
value=
"true"
/>
<property
name=
"installer.install4j.home"
value=
"/home/bamboo/install4j"
/>
<property
name=
"installer.install4j.home"
value=
"/home/bamboo/install4j"
/>
<property
name=
"installer.src"
value=
"${basedir}/build/installer"
/>
<property
name=
"installer.src"
value=
"${basedir}/build/installer"
/>
...
@@ -1322,66 +1321,50 @@
...
@@ -1322,66 +1321,50 @@
<antcall
target=
"openfireHome"
/>
<antcall
target=
"openfireHome"
/>
</target>
</target>
<macrodef
name=
"buildparentplugin"
>
<attribute
name=
"plugin"
/>
<attribute
name=
"pluginsrc"
/>
<attribute
name=
"pluginlib"
default=
"${plugin.dev.dest.dir}/@{plugin}/work/lib"
/>
<attribute
name=
"parentPlug"
/>
<sequential>
<echo
message=
"Read XML properties of @{pluginsrc}/@{parentPlug}/plugin.xml"
/>
<xmlproperty
file=
"@{pluginsrc}/@{parentPlug}/plugin.xml"
prefix=
"@{parentPlug}"
keepRoot=
"false"
/>
<if>
<isset
property=
"@{parentPlug}.parentPlugin"
/>
<then>
<echo
message=
"Compile parent of parent plugin ${@{parentPlug}.parentPlugin}"
/>
<buildparentplugin
parentPlug=
"${@{parentPlug}.parentPlugin}"
plugin=
"@{plugin}"
pluginsrc=
"@{pluginsrc}"
pluginlib=
"@{pluginlib}"
/>
</then>
</if>
<echo
message=
"Compile parent plugin @{parentPlug}"
/>
<javac
destdir=
"${plugin.dev.dest.dir}/@{plugin}/target/classes"
includeAntRuntime=
"no"
debug=
"on"
source=
"${javac.source}"
target=
"${javac.target}"
>
<src
path=
"@{pluginsrc}/@{parentPlug}/src/java"
/>
<classpath>
<path
refid=
"plugin.dependencies"
/>
<!-- Jars used by the plugin to compile with -->
<fileset
dir=
"@{pluginsrc}/@{parentPlug}"
includes=
"lib/*.jar"
/>
</classpath>
</javac>
</sequential>
</macrodef>
<!-- buildplugin (MACRO) =================================================================== -->
<!-- buildplugin (MACRO) =================================================================== -->
<macrodef
name=
"buildplugin"
>
<macrodef
name=
"buildplugin"
>
<attribute
name=
"plugin"
/>
<attribute
name=
"plugin"
/>
<attribute
name=
"pluginsrc"
/>
<attribute
name=
"pluginsrc"
/>
<attribute
name=
"pluginlib"
default=
"${plugin.dev.dest.dir}/@{plugin}/work/lib"
/>
<attribute
name=
"pluginlib"
default=
"${plugin.dev.dest.dir}/@{plugin}/work/lib"
/>
<sequential>
<sequential>
<trycatch
property=
"message_ref"
reference=
"exception_ref"
>
<if>
<not>
<istrue
value=
"${plugin.@{plugin}.skip}"
/>
</not>
<then>
<trycatch
property=
"message_ref"
reference=
"exception_ref"
>
<try>
<try>
<!-- For each plugin, co
pile code, make a jar and copy resources. -->
<!-- For each plugin, com
pile code, make a jar and copy resources. -->
<mkdir
dir=
"${plugin.dev.dest.dir}"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}/target"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}/target"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/classes"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/classes"
/>
<mkdir
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/parentlibs"
/>
<xmlproperty
file=
"${plugin.src.dir}/@{plugin}/plugin.xml"
prefix=
"@{plugin}"
keeproot=
"false"
/>
<xmlproperty
file=
"${plugin.src.dir}/@{plugin}/plugin.xml"
prefix=
"@{plugin}"
keeproot=
"false"
/>
<if>
<if>
<isset
property=
"@{plugin}.parentPlugin"
/>
<isset
property=
"@{plugin}.parentPlugin"
/>
<then>
<then>
<echo>
Parent plugin found: ${@{plugin}.parentPlugin}
</echo>
<echo>
Parent plugin found: ${@{plugin}.parentPlugin}
</echo>
<buildparentplugin
parentPlug=
"${@{plugin}.parentPlugin}"
plugin=
"@{plugin}"
pluginsrc=
"@{pluginsrc}"
pluginlib=
"@{pluginlib}"
/>
<!--<buildparentplugin parentPlug="${@{plugin}.parentPlugin}" plugin="@{plugin}" pluginsrc="@{pluginsrc}" pluginlib="@{pluginlib}"/>-->
<buildplugin
plugin=
"${@{plugin}.parentPlugin}"
pluginsrc=
"${plugin.src.dir}"
/>
<!-- Copy parent plugin code + dependencies into our own plugin directory. -->
<echo>
Parent plugin built. Copying its resources and continuing with build for child plugin.
</echo>
<copy
todir=
"${plugin.dev.dest.dir}/@{plugin}/target/parentlibs"
>
<fileset
dir=
"${plugin.dev.dest.dir}/${@{plugin}.parentPlugin}/target/parentlibs/"
includes=
"**/*.jar"
/>
</copy>
<copy
todir=
"${plugin.dev.dest.dir}/@{plugin}/target/parentlibs"
>
<fileset
dir=
"${plugin.dev.dest.dir}/${@{plugin}.parentPlugin}/target/lib/"
includes=
"**/*.jar"
/>
</copy>
</then>
</then>
</if>
</if>
<path
id=
"plugin.classpath.source"
>
<path
id=
"plugin.classpath.source"
>
<path
refid=
"plugin.dependencies"
/>
<path
refid=
"plugin.dependencies"
/>
<fileset
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/parentlibs"
includes=
"**/*.jar"
/>
<fileset
dir=
"@{pluginsrc}/@{plugin}"
includes=
"lib/*.jar"
/>
<fileset
dir=
"@{pluginsrc}/@{plugin}"
includes=
"lib/*.jar"
/>
</path>
</path>
...
@@ -1568,7 +1551,8 @@
...
@@ -1568,7 +1551,8 @@
<classpath>
<classpath>
<path
refid=
"jspc.dependencies"
/>
<path
refid=
"jspc.dependencies"
/>
<pathelement
path=
"${compile.dir}"
/>
<pathelement
path=
"${compile.dir}"
/>
<fileset
dir=
"${plugin.dev.dest.dir}/@{plugin}/target"
includes=
"lib/*.jar"
/>
<fileset
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/lib"
includes=
"*.jar"
/>
<fileset
dir=
"${plugin.dev.dest.dir}/@{plugin}/target/parentlibs"
includes=
"**/*.jar"
/>
</classpath>
</classpath>
</of.javac>
</of.javac>
...
@@ -1613,6 +1597,9 @@
...
@@ -1613,6 +1597,9 @@
<!-- Delete the exploded plugin -->
<!-- Delete the exploded plugin -->
<delete
dir=
"${plugin.dev.dest.dir}/@{plugin}/jar"
/>
<delete
dir=
"${plugin.dev.dest.dir}/@{plugin}/jar"
/>
<!-- Plugin is done! No need to rebuilt it within the same Ant task -->
<property
name=
"plugin.@{plugin}.skip"
value=
"true"
/>
</try>
</try>
<catch>
<catch>
<property
name=
"exception"
refid=
"exception_ref"
/>
<property
name=
"exception"
refid=
"exception_ref"
/>
...
@@ -1625,6 +1612,8 @@
...
@@ -1625,6 +1612,8 @@
</fail>
</fail>
</catch>
</catch>
</trycatch>
</trycatch>
</then>
</if>
</sequential>
</sequential>
</macrodef>
</macrodef>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment