Bugs item #598809, was opened at 2002-08-22 14:49
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=598809&group_id=22866
Category: None
Group: v3.0 Rabbit Hole
Status: Open
Resolution: None
Priority: 5
Submitted By: Joseph Barillari (jdbarillari)
Assigned to: Nobody/Anonymous (nobody)
Summary: Inconsistancy in template app
Initial Comment:
The JBoss template application package
(JBoss.3.0TemplateAndExamples.zip) has a case
inconsistancy in its build file which prevents it from
building.
<!--
===================================================================
-->
<!-- Creates the war archives
-->
<!--
===================================================================
-->
<target name="war" depends="compile-web"
if="servlet-lib.path">
<mkdir dir="${build.deploy.dir}"/>
<copy todir="${build.war.dir}/WEB-INF">
<!--- Here, the directory is web-inf --->
<fileset dir="${src.etc.dir}/web-inf"
includes="jboss-web.xml"/>
</copy>
<war
warfile="${build.deploy.dir}/web-client.war"
<!--- But here, it's WEB-INF -->
webxml="${src.etc.dir}/WEB-INF/web-client.xml"
>
<fileset dir="${src.web.dir}"/>
<fileset dir="${build.war.dir}"/>
<classes dir="${build.classes.dir}"
includes="test/interfaces/**"/>
</war>
</target>
Changing the second web-inf
("webxml="${src.etc.dir}/WEB-INF/web-client.xml") to
lowercase
("webxml="${src.etc.dir}/web-inf/web-client.xml")
solves the problem.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=598809&group_id=22866
-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone? Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development