You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by rg...@apache.org on 2004/12/13 01:50:11 UTC

svn commit: r111684 - /forrest/trunk/tools/eclipse/.classpath /forrest/trunk/tools/eclipse/build.properties /forrest/trunk/tools/eclipse/plugin.xml

Author: rgardler
Date: Sun Dec 12 16:50:11 2004
New Revision: 111684

URL: http://svn.apache.org/viewcvs?view=rev&rev=111684
Log:
update for log4j logging stuff
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=111684&p1=forrest/trunk/tools/eclipse/.classpath&r1=111683&p2=forrest/trunk/tools/eclipse/.classpath&r2=111684
==============================================================================
--- forrest/trunk/tools/eclipse/.classpath	(original)
+++ forrest/trunk/tools/eclipse/.classpath	Sun Dec 12 16:50:11 2004
@@ -1,6 +1,8 @@
 <?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/ant-apache-log4j.jar"/>
+	<classpathentry exported="true" kind="lib" path="lib/log4j-1.2.9.jar"/>
 	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="output" path="build"/>

Modified: forrest/trunk/tools/eclipse/build.properties
Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/build.properties?view=diff&rev=111684&p1=forrest/trunk/tools/eclipse/build.properties&r1=111683&p2=forrest/trunk/tools/eclipse/build.properties&r2=111684
==============================================================================
--- forrest/trunk/tools/eclipse/build.properties	(original)
+++ forrest/trunk/tools/eclipse/build.properties	Sun Dec 12 16:50:11 2004
@@ -17,7 +17,9 @@
 bin.includes = plugin.xml,\
                forrestplugin.jar,\
                icons/,\
-               readme.txt
+               readme.txt,\
+               lib/,\
+               conf/
 src.includes = src/,\
                readme.txt,\
                plugin.xml,\

Modified: forrest/trunk/tools/eclipse/plugin.xml
Url: http://svn.apache.org/viewcvs/forrest/trunk/tools/eclipse/plugin.xml?view=diff&rev=111684&p1=forrest/trunk/tools/eclipse/plugin.xml&r1=111683&p2=forrest/trunk/tools/eclipse/plugin.xml&r2=111684
==============================================================================
--- forrest/trunk/tools/eclipse/plugin.xml	(original)
+++ forrest/trunk/tools/eclipse/plugin.xml	Sun Dec 12 16:50:11 2004
@@ -26,8 +26,12 @@
       <library name="forrestplugin.jar">
          <export name="*"/>
       </library>
+      <library name="lib/log4j-1.2.9.jar">
+         <export name="*"/>
+      </library>
    </runtime>
    <requires>
+      <import plugin="org.apache.ant"/>
       <import plugin="org.eclipse.ui"/>
       <import plugin="org.eclipse.jdt.core"/>
       <import plugin="org.eclipse.jdt.launching"/>
@@ -107,6 +111,12 @@
       class="org.eclipse.webbrowser.internal.WebBrowserEditor"
       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>