java/nekurak.net-ws/nbproject/ant-deploy.xml
author František Kučera <franta-hg@frantovo.cz>
Sun Jun 20 14:46:47 2010 +0200 (2010-06-20)
changeset 145 0efefbf5f8b6
parent 98 75dec396f0e3
child 186 b0f7d9ab4a07
permissions -rw-r--r--
Formátování kódu, důsledné používání tabulátorů, drobné úpravy, StringBuilder
franta-hg@98
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@98
     2
<project default="-deploy-ant" basedir=".">
franta-hg@98
     3
    <target name="-init-cl-deployment-env" if="deploy.ant.enabled">
franta-hg@98
     4
        <property file="${deploy.ant.properties.file}" />
franta-hg@98
     5
        <available file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" property="sun.web.present"/>
franta-hg@98
     6
        <available file="${deploy.ant.resource.dir}" property="has.setup"/>
franta-hg@98
     7
        <tempfile prefix="gfv3" property="gfv3.password.file" destdir="${java.io.tmpdir}"/>  <!-- do not forget to delete this! -->
franta-hg@98
     8
        <echo message="AS_ADMIN_PASSWORD=${gfv3.password}" file="${gfv3.password.file}"/>
franta-hg@98
     9
    </target>
franta-hg@98
    10
    
franta-hg@98
    11
    <target name="-parse-sun-web" depends="-init-cl-deployment-env" if="sun.web.present">
franta-hg@98
    12
        <tempfile prefix="gfv3" property="temp.sun.web" destdir="${java.io.tmpdir}"/>
franta-hg@98
    13
        <copy file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" tofile="${temp.sun.web}"/>
franta-hg@98
    14
        <!-- The doctype triggers resolution which can fail -->
franta-hg@98
    15
        <replace file="${temp.sun.web}">
franta-hg@98
    16
            <replacetoken><![CDATA[<!DOCTYPE]]></replacetoken>
franta-hg@98
    17
            <replacevalue><![CDATA[<!-- <!DOCTYPE]]></replacevalue>
franta-hg@98
    18
        </replace>
franta-hg@98
    19
        <replace file="${temp.sun.web}">
franta-hg@98
    20
            <replacetoken><![CDATA[<sun-web-app]]></replacetoken>
franta-hg@98
    21
            <replacevalue><![CDATA[--> <sun-web-app]]></replacevalue>
franta-hg@98
    22
        </replace>
franta-hg@98
    23
        <xmlproperty file="${temp.sun.web}" validate="false">
franta-hg@98
    24
        </xmlproperty>    
franta-hg@98
    25
        <delete file="${temp.sun.web}"/>
franta-hg@98
    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="&amp;contextroot=${sun-web-app.context-root}"/>
franta-hg@98
    28
    </target>
franta-hg@98
    29
    <target name="-no-parse-sun-web" depends="-init-cl-deployment-env" unless="sun.web.present">
franta-hg@98
    30
        <property name="deploy.context.root.argument" value=""/>
franta-hg@98
    31
    </target>
franta-hg@98
    32
    <target name="-add-resources" depends="-init-cl-deployment-env" if="has.setup">
franta-hg@98
    33
        <tempfile prefix="gfv3" property="gfv3.resources.dir" destdir="${java.io.tmpdir}"/>
franta-hg@98
    34
        <mkdir dir="${gfv3.resources.dir}"/>
franta-hg@98
    35
        <mkdir dir="${gfv3.resources.dir}/META-INF"/>
franta-hg@98
    36
        <property name="gfv3.resources.file" value="${gfv3.resources.dir}/META-INF/sun-resources.xml"/>
franta-hg@98
    37
        <copy todir="${gfv3.resources.dir}/META-INF">
franta-hg@98
    38
            <fileset dir="${deploy.ant.resource.dir}"/>
franta-hg@98
    39
        </copy>
franta-hg@98
    40
        <jar destfile="${deploy.ant.archive}" update="true">
franta-hg@98
    41
            <fileset dir="${gfv3.resources.dir}"/>
franta-hg@98
    42
        </jar>
franta-hg@98
    43
        <delete dir="${gfv3.resources.dir}"/>
franta-hg@98
    44
    </target>
franta-hg@98
    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@98
    51
        <echo message="Deploying ${deploy.ant.archive}"/>
franta-hg@98
    52
        <tempfile prefix="gfv3" property="gfv3.results.file" destdir="${java.io.tmpdir}"/>  <!-- do not forget to delete this! -->
franta-hg@98
    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}&amp;force=true&amp;name=${ant.project.name}"
franta-hg@98
    55
            dest="${gfv3.results.file}"/>
franta-hg@98
    56
        <delete file="${gfv3.results.file}"/>    
franta-hg@98
    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}&amp;force=true&amp;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@98
    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@98
    72
        <echo message="Undeploying ${deploy.ant.archive}"/>
franta-hg@98
    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@98
    75
            dest="${gfv3.results.file}"/>
franta-hg@98
    76
        <delete file="${gfv3.results.file}"/>    
franta-hg@98
    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@98
    85
</project>