author | František Kučera <franta-hg@frantovo.cz> |
Wed, 26 Jan 2011 02:24:34 +0100 | |
changeset 178 | afee4e663992 |
parent 142 | 44ef544460ca |
child 186 | b0f7d9ab4a07 |
permissions | -rw-r--r-- |
franta-hg@27 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
franta-hg@27 | 2 |
<project default="-deploy-ant" basedir="."> |
franta-hg@27 | 3 |
<target name="-init-cl-deployment-env" if="deploy.ant.enabled"> |
franta-hg@27 | 4 |
<property file="${deploy.ant.properties.file}" /> |
franta-hg@27 | 5 |
<available file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" property="sun.web.present"/> |
franta-hg@27 | 6 |
<available file="${deploy.ant.resource.dir}" property="has.setup"/> |
franta-hg@27 | 7 |
<tempfile prefix="gfv3" property="gfv3.password.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> |
franta-hg@27 | 8 |
<echo message="AS_ADMIN_PASSWORD=${gfv3.password}" file="${gfv3.password.file}"/> |
franta-hg@27 | 9 |
</target> |
franta-hg@27 | 10 |
|
franta-hg@27 | 11 |
<target name="-parse-sun-web" depends="-init-cl-deployment-env" if="sun.web.present"> |
franta-hg@27 | 12 |
<tempfile prefix="gfv3" property="temp.sun.web" destdir="${java.io.tmpdir}"/> |
franta-hg@27 | 13 |
<copy file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" tofile="${temp.sun.web}"/> |
franta-hg@27 | 14 |
<!-- The doctype triggers resolution which can fail --> |
franta-hg@27 | 15 |
<replace file="${temp.sun.web}"> |
franta-hg@27 | 16 |
<replacetoken><![CDATA[<!DOCTYPE]]></replacetoken> |
franta-hg@27 | 17 |
<replacevalue><![CDATA[<!-- <!DOCTYPE]]></replacevalue> |
franta-hg@27 | 18 |
</replace> |
franta-hg@27 | 19 |
<replace file="${temp.sun.web}"> |
franta-hg@27 | 20 |
<replacetoken><![CDATA[<sun-web-app]]></replacetoken> |
franta-hg@27 | 21 |
<replacevalue><![CDATA[--> <sun-web-app]]></replacevalue> |
franta-hg@27 | 22 |
</replace> |
franta-hg@27 | 23 |
<xmlproperty file="${temp.sun.web}" validate="false"> |
franta-hg@27 | 24 |
</xmlproperty> |
franta-hg@27 | 25 |
<delete file="${temp.sun.web}"/> |
franta-hg@27 | 26 |
<property name="deploy.ant.client.url" value="${gfv3.url}${sun-web-app.context-root}"/> |
franta-hg@142 | 27 |
<property name="deploy.context.root.argument" value="&contextroot=${sun-web-app.context-root}"/> |
franta-hg@27 | 28 |
</target> |
franta-hg@27 | 29 |
<target name="-no-parse-sun-web" depends="-init-cl-deployment-env" unless="sun.web.present"> |
franta-hg@27 | 30 |
<property name="deploy.context.root.argument" value=""/> |
franta-hg@27 | 31 |
</target> |
franta-hg@27 | 32 |
<target name="-add-resources" depends="-init-cl-deployment-env" if="has.setup"> |
franta-hg@27 | 33 |
<tempfile prefix="gfv3" property="gfv3.resources.dir" destdir="${java.io.tmpdir}"/> |
franta-hg@27 | 34 |
<mkdir dir="${gfv3.resources.dir}"/> |
franta-hg@27 | 35 |
<mkdir dir="${gfv3.resources.dir}/META-INF"/> |
franta-hg@27 | 36 |
<property name="gfv3.resources.file" value="${gfv3.resources.dir}/META-INF/sun-resources.xml"/> |
franta-hg@27 | 37 |
<copy todir="${gfv3.resources.dir}/META-INF"> |
franta-hg@27 | 38 |
<fileset dir="${deploy.ant.resource.dir}"/> |
franta-hg@27 | 39 |
</copy> |
franta-hg@27 | 40 |
<jar destfile="${deploy.ant.archive}" update="true"> |
franta-hg@27 | 41 |
<fileset dir="${gfv3.resources.dir}"/> |
franta-hg@27 | 42 |
</jar> |
franta-hg@27 | 43 |
<delete dir="${gfv3.resources.dir}"/> |
franta-hg@27 | 44 |
</target> |
franta-hg@27 | 45 |
<target name="-deploy-ant" depends="-parse-sun-web,-no-parse-sun-web,-add-resources" if="deploy.ant.enabled"> |
franta-hg@142 | 46 |
<antcall target="-deploy-without-pw"/> |
franta-hg@142 | 47 |
<antcall target="-deploy-with-pw"/> |
franta-hg@142 | 48 |
</target> |
franta-hg@142 | 49 |
|
franta-hg@142 | 50 |
<target name="-deploy-without-pw" unless="gfv3.password"> |
franta-hg@27 | 51 |
<echo message="Deploying ${deploy.ant.archive}"/> |
franta-hg@27 | 52 |
<tempfile prefix="gfv3" property="gfv3.results.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> |
franta-hg@27 | 53 |
<property name="full.deploy.ant.archive" location="${deploy.ant.archive}"/> |
franta-hg@142 | 54 |
<get src="${gfv3.admin.url}/__asadmin/deploy?path=${full.deploy.ant.archive}${deploy.context.root.argument}&force=true&name=${ant.project.name}" |
franta-hg@27 | 55 |
dest="${gfv3.results.file}"/> |
franta-hg@27 | 56 |
<delete file="${gfv3.results.file}"/> |
franta-hg@27 | 57 |
</target> |
franta-hg@142 | 58 |
<target name="-deploy-with-pw" if="gfv3.password"> |
franta-hg@142 | 59 |
<echo message="Deploying ${deploy.ant.archive}"/> |
franta-hg@142 | 60 |
<tempfile prefix="gfv3" property="gfv3.results.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> |
franta-hg@142 | 61 |
<property name="full.deploy.ant.archive" location="${deploy.ant.archive}"/> |
franta-hg@142 | 62 |
<get username="${gfv3.username}" password="${gfv3.password}" src="${gfv3.admin.url}/__asadmin/deploy?path=${full.deploy.ant.archive}${deploy.context.root.argument}&force=true&name=${ant.project.name}" |
franta-hg@142 | 63 |
dest="${gfv3.results.file}"/> |
franta-hg@142 | 64 |
<delete file="${gfv3.results.file}"/> |
franta-hg@142 | 65 |
</target> |
franta-hg@27 | 66 |
<target name="-undeploy-ant" depends="-init-cl-deployment-env" if="deploy.ant.enabled"> |
franta-hg@142 | 67 |
<antcall target="-undeploy-without-pw"/> |
franta-hg@142 | 68 |
<antcall target="-undeploy-with-pw"/> |
franta-hg@142 | 69 |
</target> |
franta-hg@142 | 70 |
|
franta-hg@142 | 71 |
<target name="-undeploy-without-pw" unless="gfv3.password"> |
franta-hg@27 | 72 |
<echo message="Undeploying ${deploy.ant.archive}"/> |
franta-hg@27 | 73 |
<tempfile prefix="gfv3" property="gfv3.results.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> |
franta-hg@142 | 74 |
<get src="${gfv3.admin.url}/__asadmin/undeploy?name=${ant.project.name}" |
franta-hg@27 | 75 |
dest="${gfv3.results.file}"/> |
franta-hg@27 | 76 |
<delete file="${gfv3.results.file}"/> |
franta-hg@27 | 77 |
</target> |
franta-hg@142 | 78 |
<target name="-undeploy-with-pw" if="gfv3.password"> |
franta-hg@142 | 79 |
<echo message="Undeploying ${deploy.ant.archive}"/> |
franta-hg@142 | 80 |
<tempfile prefix="gfv3" property="gfv3.results.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> |
franta-hg@142 | 81 |
<get username="${gfv3.username}" password="${gfv3.password}" src="${gfv3.admin.url}/__asadmin/undeploy?name=${ant.project.name}" |
franta-hg@142 | 82 |
dest="${gfv3.results.file}"/> |
franta-hg@142 | 83 |
<delete file="${gfv3.results.file}"/> |
franta-hg@142 | 84 |
</target> |
franta-hg@27 | 85 |
</project> |