|
Revision 3105
(checked in by douglm, 2 years ago)
|
Remove definition of property "base.name" from (almost) every build file. Was not used.
Stop defining, creating and copying to libapi. Wasn't in use.
Remove build directory from every project and use the build files in the main bedework project. improves consistency and maintainability. Also allowed some bugs to be fixed.
Allow setting of message level during build and set it at quiet. Allows error messages to be more obvious.
Create macro to handle the common property definitions. Reduces size and complexity of build files.
Add a build-jar macro. Removes need for build files for sub-modules. Partway through converting to use that.
|
| Line | |
|---|
| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- =================================================================== |
|---|
| 4 |
terminations task. |
|---|
| 5 |
=================================================================== --> |
|---|
| 6 |
|
|---|
| 7 |
<project name="bwdeploy.termination" default="deploy" > |
|---|
| 8 |
<import file="${build.dir}/platforms/${org.bedework.global.deploy.platform}-${org.bedework.deployment.name}.xml" /> |
|---|
| 9 |
|
|---|
| 10 |
<dirname property="this.dir" file="${ant.file}"/> |
|---|
| 11 |
|
|---|
| 12 |
<!-- ensure has value --> |
|---|
| 13 |
<property name="propval.app.cal.suite" value="" /> |
|---|
| 14 |
|
|---|
| 15 |
<target name="init"> |
|---|
| 16 |
</target> |
|---|
| 17 |
|
|---|
| 18 |
<target name="deploy" depends="init,build.configured" > |
|---|
| 19 |
<!-- Platform specific --> |
|---|
| 20 |
<antcall target="doPlatform" inheritRefs="true" /> |
|---|
| 21 |
</target> |
|---|
| 22 |
|
|---|
| 23 |
<target name="build.configured" depends="init" > |
|---|
| 24 |
</target> |
|---|
| 25 |
|
|---|
| 26 |
<target name="copyToServer"> |
|---|
| 27 |
<copy todir="${appserver.lib.dir}" file="${org.bedework.extra.jar}" /> |
|---|
| 28 |
</target> |
|---|
| 29 |
</project> |
|---|