[virtualcommons-svn] SF.net SVN: virtualcommons:[58] foraging/trunk
Status: Beta
Brought to you by:
alllee
From: <al...@us...> - 2008-10-28 18:45:13
|
Revision: 58 http://virtualcommons.svn.sourceforge.net/virtualcommons/?rev=58&view=rev Author: alllee Date: 2008-10-28 18:45:11 +0000 (Tue, 28 Oct 2008) Log Message: ----------- adding comments to windows deployment, adding WEB-INF to src/main/resources/web so Jetty won't be unhappy Modified Paths: -------------- foraging/trunk/build.xml foraging/trunk/deploy.bat foraging/trunk/jetty.bat Added Paths: ----------- foraging/trunk/src/main/resources/web/WEB-INF/ foraging/trunk/src/main/resources/web/WEB-INF/web.xml Modified: foraging/trunk/build.xml =================================================================== --- foraging/trunk/build.xml 2008-10-28 18:36:56 UTC (rev 57) +++ foraging/trunk/build.xml 2008-10-28 18:45:11 UTC (rev 58) @@ -133,6 +133,7 @@ </fileset> <fileset dir='${resources.dir}/web'> <include name='index.html'/> + <include name='WEB-INF/**'/> </fileset> </copy> <!-- copy images --> Modified: foraging/trunk/deploy.bat =================================================================== --- foraging/trunk/deploy.bat 2008-10-28 18:36:56 UTC (rev 57) +++ foraging/trunk/deploy.bat 2008-10-28 18:45:11 UTC (rev 58) @@ -1,3 +1,6 @@ +REM set ANT_HOME to the location where you unpacked Ant. Inside this +REM directory should be bin and lib directories containing the Ant +REM executables and library dependencies. set ANT_HOME=C:\tools\ant set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_10 set PATH=%ANT_HOME%\bin;%JAVA_HOME\bin;%PATH% Modified: foraging/trunk/jetty.bat =================================================================== --- foraging/trunk/jetty.bat 2008-10-28 18:36:56 UTC (rev 57) +++ foraging/trunk/jetty.bat 2008-10-28 18:45:11 UTC (rev 58) @@ -1,3 +1,6 @@ +REM set M2_HOME to the location where you unpacked Maven. Inside this +REM directory should be bin and lib directories containing the Maven +REM executables and library dependencies. set M2_HOME=C:\tools\maven set JAVA_HOME=C:\Program Files\Java\jdk1.6.0_10 set PATH=%M2_HOME%\bin;%JAVA_HOME\bin;%PATH% Added: foraging/trunk/src/main/resources/web/WEB-INF/web.xml =================================================================== --- foraging/trunk/src/main/resources/web/WEB-INF/web.xml (rev 0) +++ foraging/trunk/src/main/resources/web/WEB-INF/web.xml 2008-10-28 18:45:11 UTC (rev 58) @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +vim:sts=2:sw=2 +--> +<web-app> + + <display-name>The Virtual Commons Foraging Experiment</display-name> + + <welcome-file-list> + <welcome-file>index.html</welcome-file> + </welcome-file-list> + +</web-app> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |