|
Revision 3460
(checked in by douglm, 1 year ago)
|
Almost completely build changes - mostly elimination of the per-project build.properties file.
There is now a single properties file in the config which determines all the project versions - with the exception of deployutil.
This update also includes a new deployment task to collect jar references and license information. A small utility will generate a readable notice and references file for the quickstart and/or the site.
|
| 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 |
<target name="init"> |
|---|
| 13 |
</target> |
|---|
| 14 |
|
|---|
| 15 |
<target name="deploy" depends="init,build.configured" > |
|---|
| 16 |
<!-- Platform specific --> |
|---|
| 17 |
<antcall target="doPlatform" inheritRefs="true" /> |
|---|
| 18 |
</target> |
|---|
| 19 |
|
|---|
| 20 |
<target name="build.configured" depends="init" > |
|---|
| 21 |
</target> |
|---|
| 22 |
|
|---|
| 23 |
<target name="copyToServer"> |
|---|
| 24 |
<copy todir="${appserver.lib.dir}" file="${org.bedework.extra.jar}" /> |
|---|
| 25 |
</target> |
|---|
| 26 |
</project> |
|---|