| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- =================================================================== |
|---|
| 4 |
This file is imported by buildsh.xml and others and adds the targets: |
|---|
| 5 |
doHibProps: builds a set of properties for the service |
|---|
| 6 |
addLibs: add libraries for this platform |
|---|
| 7 |
addResources: add anything we want in the resources directory |
|---|
| 8 |
addExtras: add scripts for runnable versions and META-INF for |
|---|
| 9 |
jboss services etc. |
|---|
| 10 |
deployService: deploy the service |
|---|
| 11 |
=================================================================== --> |
|---|
| 12 |
|
|---|
| 13 |
<project name="bedework.platformService" default="doHibProps" > |
|---|
| 14 |
<!-- Redirect all targets to the runable service generator --> |
|---|
| 15 |
<import file="${build.dir}/platforms/runnableService.xml" /> |
|---|
| 16 |
|
|---|
| 17 |
<target name="doHibProps" > |
|---|
| 18 |
<antcall target="runnableDoHibProps" inheritRefs="true" /> |
|---|
| 19 |
</target> |
|---|
| 20 |
|
|---|
| 21 |
<!-- ================================================================ |
|---|
| 22 |
Add libraries |
|---|
| 23 |
================================================================ --> |
|---|
| 24 |
|
|---|
| 25 |
<target name="addLibs"> |
|---|
| 26 |
<antcall target="runnableAddLibs" inheritRefs="true" /> |
|---|
| 27 |
</target> |
|---|
| 28 |
|
|---|
| 29 |
<!-- ================================================================ |
|---|
| 30 |
Add resources |
|---|
| 31 |
================================================================ --> |
|---|
| 32 |
|
|---|
| 33 |
<target name="addResources"> |
|---|
| 34 |
<antcall target="runnableAddResources" inheritRefs="true" /> |
|---|
| 35 |
</target> |
|---|
| 36 |
|
|---|
| 37 |
<!-- ================================================================ |
|---|
| 38 |
Add extras |
|---|
| 39 |
================================================================ --> |
|---|
| 40 |
|
|---|
| 41 |
<target name="addExtras"> |
|---|
| 42 |
<antcall target="runnableAddExtras" inheritRefs="true" /> |
|---|
| 43 |
</target> |
|---|
| 44 |
|
|---|
| 45 |
<!-- ================================================================ |
|---|
| 46 |
Deploy the service |
|---|
| 47 |
================================================================ --> |
|---|
| 48 |
|
|---|
| 49 |
<target name="deployService"> |
|---|
| 50 |
<antcall target="runnableDeployService" inheritRefs="true" /> |
|---|
| 51 |
</target> |
|---|
| 52 |
</project> |
|---|