Author: rgardler Date: Tue Jan 18 05:01:35 2005 New Revision: 125499 URL: http://svn.apache.org/viewcvs?view=rev&rev=125499 Log: refactor server start technique, now able to shutdown server from GUI Added: forrest/trunk/tools/eclipse/lib/jetty-4.2.19.jar (contents, props changed) Modified: forrest/trunk/tools/eclipse/.classpath forrest/trunk/tools/eclipse/build.properties forrest/trunk/tools/eclipse/plugin.xml
Modified: forrest/trunk/tools/eclipse/.classpath Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/.classpath?view=diff&rev=125499&p1=forrest/trunk/tools/eclipse/.classpath&r1=125498&p2=forrest/trunk/tools/eclipse/.classpath&r2=125499 ============================================================================== --- forrest/trunk/tools/eclipse/.classpath (original) +++ forrest/trunk/tools/eclipse/.classpath Tue Jan 18 05:01:35 2005 @@ -1,8 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry kind="src" path="src/"/> + <classpathentry kind="src" path="src"/> <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.9.jar"/> + <classpathentry exported="true" kind="lib" path="lib/jetty-4.2.19.jar"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="lib" path="lib/servlet-2.3.jar"/> <classpathentry kind="output" path="build"/> </classpath> Modified: forrest/trunk/tools/eclipse/build.properties Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/build.properties?view=diff&rev=125499&p1=forrest/trunk/tools/eclipse/build.properties&r1=125498&p2=forrest/trunk/tools/eclipse/build.properties&r2=125499 ============================================================================== --- forrest/trunk/tools/eclipse/build.properties (original) +++ forrest/trunk/tools/eclipse/build.properties Tue Jan 18 05:01:35 2005 @@ -26,4 +26,5 @@ plugin.properties,\ build.properties,\ icons/,\ - .project + .project,\ + lib/ Added: forrest/trunk/tools/eclipse/lib/jetty-4.2.19.jar Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/lib/jetty-4.2.19.jar?view=auto&rev=125499 ============================================================================== Binary file. No diff available. Modified: forrest/trunk/tools/eclipse/plugin.xml Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugin.xml?view=diff&rev=125499&p1=forrest/trunk/tools/eclipse/plugin.xml&r1=125498&p2=forrest/trunk/tools/eclipse/plugin.xml&r2=125499 ============================================================================== --- forrest/trunk/tools/eclipse/plugin.xml (original) +++ forrest/trunk/tools/eclipse/plugin.xml Tue Jan 18 05:01:35 2005 @@ -29,18 +29,26 @@ <library name="lib/log4j-1.2.9.jar"> <export name="*"/> </library> + <library name="lib/jetty-4.2.19.jar"> + <export name="*"/> + </library> + <library name="lib/servlet-2.3.jar"> + <export name="*"/> + </library> </runtime> <requires> <import plugin="org.apache.ant"/> + <import plugin="org.eclipse.ant.core"/> <import plugin="org.eclipse.ui"/> <import plugin="org.eclipse.jdt.core"/> <import plugin="org.eclipse.jdt.launching"/> <import plugin="org.eclipse.jface.text"/> <import plugin="org.eclipse.core.resources"/> <import plugin="org.eclipse.core.runtime"/> - <import plugin="org.eclipse.ant.core"/> + <import plugin="org.eclipse.debug.core"/> <import plugin="org.eclipse.ui.ide"/> <import plugin="org.eclipse.webbrowser"/> + <import plugin="org.eclipse.debug.ui"/> </requires> @@ -112,12 +120,4 @@ extensions="html,htm,gif,jpg,jpeg,xhtml" contributorClass="org.eclipse.webbrowser.internal.WebBrowserEditorActionBarContributor"/> </extension> - <extension - point="org.eclipse.ant.core.extraClasspathEntries"> - <extraClasspathEntry - headless="true" - library="build/org/apache/forrest/ForrestListener.class"/> - </extension> - - </plugin>
