alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java EE 6 example source code file (build.xml)

This example Java EE 6 source code file (build.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Java EE 6 tags/keywords

all, copyright, inc, inc, meta-inf, microsystems, microsystems, sun, sun, utf-8, utf-8

The Java EE 6 build.xml source code

<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.-->

<project name="servletcontainerinitializer-war" default="all" basedir=".">

    <property name="is.war.module" value="true"/>
    <property name="javadoc.packagenames" value="web.servlet.servletcontainerinitializer_war"/>
    <property name="run.uri" value="/servletcontainerinitializer-war/SampleServlet"/>

    <import file="../../../../bp-project/main.xml"/>

    <target name="all" unless="netbeans.home">
        <antcall target="run"/>
    </target>

    <target name="shared-lib">
            <antcall target="stop-domain"/>
        <mkdir dir="./containerinitializerlibrary/build" />
        <javac srcdir="./containerinitializerlibrary/src"
                destdir="./containerinitializerlibrary/build"
                classpath="${javaee.home}/modules/javax.servlet.jar"
                debug="on"
                failonerror="true"/>
        <jar destfile="${javaee.home}/lib/TestSharedLib1.jar">
            <fileset dir="./containerinitializerlibrary/build"/>
            <fileset dir="./containerinitializerlibrary/src" includes="META-INF/**"/>
        </jar>
        <antcall target="start-domain"/>
    </target>
    
    <loadfile srcFile="./nbproject/private/private.properties" property="javaee.home.foo" quiet="true">
        <filterchain >
            <linecontains >
                <contains value="j2ee.server.instance=["/>
            </linecontains>
            <tokenfilter>
                <replaceregex pattern="\].*[0-9]" replace=""/>
            </tokenfilter>
            <tokenfilter>
                <replaceregex pattern="j2ee\.server\.instance=\[" replace=""/>
            </tokenfilter>
            <striplinebreaks/>
        </filterchain>
    </loadfile>
    <condition property="javaee.home" value="${javaee.home.foo}">
        <not>
            <isset  property="javaee.home"/>
        </not>
    </condition>
    

    <loadfile srcFile="./nbproject/private/private.properties" property="host.and.port" quiet="true">
        <filterchain>
            <linecontains >
                <contains value="j2ee.server.instance=["/>
            </linecontains>
            <tokenfilter>
                <replaceregex pattern="j2ee\.server\.instance=\[.*\]deployer\:gfv3ee6:" replace=""/>
            </tokenfilter>
            <striplinebreaks/>
        </filterchain>
    </loadfile>
    <property name="host.and.port" value="localhost:4848"/>


    <target name="-pre-run-deploy" if="netbeans.home">
        <copy  file="./containerinitializerlibrary/dist/containerinitializerlibrary.jar"
            tofile="${javaee.home}/lib/TestSharedLib1.jar"/>
        <!-- 
        <get src="http://${host.and.port}/__asadmin/stop-domain" dest="./dist/tmp" ignoreerrors="true"/>
        <sleep seconds="5"/>
    </target>

    <target name="-pre-deploy">
        <antcall target="shared-lib"/>
    </target>

    <target name="-post-clean" if="netbeans.home">
        <get src="http://${host.and.port}/__asadmin/stop-domain" dest="./dist/tmp" ignoreerrors="true"/>
        <delete file="${javaee.home}/lib/TestSharedLib1.jar"/>
    </target>

    <!-- clean up subproject and undeploy from ant -->
    <target name="-pre-clean" depends="ant-undeploy">
    </target>

    <target name="ant-undeploy" unless="netbeans.home">
        <antcall target="undeploy"/>
        <antcall target="stop-domain"/>
        <delete file="${javaee.home}/lib/TestSharedLib1.jar"/>
        <antcall target="start-domain"/>
    </target>
    
</project>

Other Java EE 6 examples (source code examples)

Here is a short list of links related to this Java EE 6 build.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.