You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ch...@apache.org on 2004/04/25 13:31:16 UTC

svn commit: rev 10257 - xml/forrest/trunk/src/core/targets

Author: cheche
Date: Sun Apr 25 04:31:15 2004
New Revision: 10257

Modified:
   xml/forrest/trunk/src/core/targets/war.xml
Log:
Use War instead of Jar 


Modified: xml/forrest/trunk/src/core/targets/war.xml
==============================================================================
--- xml/forrest/trunk/src/core/targets/war.xml	(original)
+++ xml/forrest/trunk/src/core/targets/war.xml	Sun Apr 25 04:31:15 2004
@@ -21,14 +21,20 @@
        param: location to put generated war ${project.war}
        =============================================================== -->
  <target name="war" depends="webapp"
-   description="Generates a dynamic servlet-based website (an packaged .war file)">
+   description="Generates a dynamic servlet-based website (a packaged .war file)">
 
-   <jar destfile="${project.war}" basedir="${project.webapp}"/>
+   <war destfile="${project.war}" basedir="${project.webapp}"/>
    <echo>
 ---------------------------------
 Webapp .war file generated:
 ${project.war}
----------------------------------
+
+Please keep in mind that you may have to copy some jar files to
+wherever your servlet container looks for "endorsed" libraries. These
+files are found in ${forrest.home}/lib/endorsed. You may also copy
+them to the endorsed directory in your JDK installation if you wish to
+use them globally for your entire system.
+----------------------------------
    </echo>
   </target> 
-</project>
\ No newline at end of file
+</project>