|
Jetty example source code file (build.xml)
The Jetty build.xml source code
<project name="deployextension" default="deploy.j2ee.web" basedir=".">
<property name="pause.deploy" value="2"/>
<property name="pause.undeploy" value="2"/>
<property name="annotationConfig" value="org.mortbay.jetty.annotations.Configuration"/>
<property name="nonAnnotationConfig" value="org.mortbay.jetty.plus.webapp.Configuration"/>
<target name="deploy.j2ee.web">
<jar destfile="${project.working.dir}/${module.name}.war">
<zipfileset dir="${module.dir}">
<include name="**/*.*"/>
<exclude name="**/*.war"/>
</zipfileset>
</jar>
<echo>
context Root = ${contextRoot}
context Path = ${contextPath}
</echo>
<!-- if eclipse passes just the name -->
<condition property="contextPath" value="/${contextRoot}">
<not>
Other Jetty examples (source code examples)Here is a short list of links related to this Jetty build.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.