root/trunk/deployment/websubmit/jboss/build.xml

Revision 1580 (checked in by douglm, 6 years ago)

Add the basic framework for a new event submission web application.

This does not work yet though the system as a whole builds successfully.

  • Property svn:eol-style set to LF
Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      Create war ready for jboss (j2ee) deployment
5      =================================================================== -->
6
7 <project name="app.deploy" default="deploy" >
8   <target name="init" >
9     <dirname property="this.dir" file="${ant.file}"/>
10
11     <property name="app.resources.dir"
12               location="${this.dir}/../webapp/resources" />
13   </target>
14
15   <!-- =================================================================
16        The "deploy" target first builds a configured component then copies
17        all required files to the appropriate servlet container directories.
18
19        Currently this only works for the quickstart distribution.
20        For example, it does not handle deploying into jboss and copying
21        resource files (images, stylesheets) to external locations.
22        ================================================================= -->
23
24   <target name="deploy" depends="init,build.configured" >
25     <echo message="***************************************************************" />
26     <echo message="Readying app ${propval.app.war.name}.war for jboss deployment" />
27     <echo message="***************************************************************" />
28   </target>
29
30   <target name="build.configured" >
31     <!-- ===============================================================
32          Just use webapp build
33          =============================================================== -->
34
35     <ant antfile="${this.dir}/../webapp/build.xml" inheritRefs="true" target="build.configured" />
36   </target>
37 </project>
Note: See TracBrowser for help on using the browser.