1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Patch for Keith Campbell.

- Add missing plugin dependency to eliminate warnings
about undefined extension points.
This commit is contained in:
Doug Schaefer 2003-09-12 18:19:05 +00:00
parent 406f05d071
commit bd9cb0bd51
4 changed files with 10 additions and 0 deletions

View file

@ -14,6 +14,7 @@
<classpathentry kind="src" path="/org.eclipse.search"/> <classpathentry kind="src" path="/org.eclipse.search"/>
<classpathentry kind="src" path="/org.eclipse.compare"/> <classpathentry kind="src" path="/org.eclipse.compare"/>
<classpathentry kind="src" path="/org.eclipse.debug.core"/> <classpathentry kind="src" path="/org.eclipse.debug.core"/>
<classpathentry kind="src" path="/org.eclipse.team.core"/>
<classpathentry kind="src" path="/org.eclipse.core.boot"/> <classpathentry kind="src" path="/org.eclipse.core.boot"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/> <classpathentry kind="output" path="bin"/>

View file

@ -10,6 +10,7 @@
<project>org.eclipse.core.runtime</project> <project>org.eclipse.core.runtime</project>
<project>org.eclipse.debug.core</project> <project>org.eclipse.debug.core</project>
<project>org.eclipse.search</project> <project>org.eclipse.search</project>
<project>org.eclipse.team.core</project>
</projects> </projects>
<buildSpec> <buildSpec>
<buildCommand> <buildCommand>

View file

@ -1,3 +1,10 @@
2003-09-12 Keith Campbell
Added missing dependency on org.eclipse.team.core (this plugin defines extensions
to org.eclipse.team.core.fileTypes and org.eclipse.team.core.ignore).
* .classpath
* .project
* plugin.xml
2003-09-10 Sean Evoy 2003-09-10 Sean Evoy
Work completed to resolve [Bug 41412] "Restore Default in Managed Build project's Work completed to resolve [Bug 41412] "Restore Default in Managed Build project's
settings Not Working". The configuration now has a reset method that removes settings Not Working". The configuration now has a reset method that removes

View file

@ -18,6 +18,7 @@
<import plugin="org.eclipse.search"/> <import plugin="org.eclipse.search"/>
<import plugin="org.eclipse.compare"/> <import plugin="org.eclipse.compare"/>
<import plugin="org.eclipse.debug.core"/> <import plugin="org.eclipse.debug.core"/>
<import plugin="org.eclipse.team.core"/>
</requires> </requires>