|
From: Matthias K <mat...@us...> - 2006-03-28 13:54:54
|
Update of /cvsroot/jcommander/plugins/org.jcommander.ui.compare In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9650 Added Files: build.properties .classpath plugin.xml .project Log Message: JCommander compare support --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>org.jcommander.ui.compare</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.ManifestBuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.SchemaBuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.pde.PluginNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: build.properties --- source.. = src/ output.. = bin/ bin.includes = plugin.xml,\ META-INF/,\ . --- NEW FILE: plugin.xml --- <?xml version="1.0" encoding="UTF-8"?> <?eclipse version="3.0"?> <plugin> <extension point="org.eclipse.ui.preferencePages"> <page name="Compare Preferences" class="org.jcommander.compare.preferences.ComparePreferencePage" id="org.jcommander.compare.preferences.ComparePreferencePage"> </page> </extension> <extension point="org.eclipse.core.runtime.preferences"> <initializer class="org.jcommander.compare.preferences.PreferenceInitializer"> </initializer> </extension> <extension point="org.eclipse.ui.perspectives"> <perspective id="org.jcommander.compare.Compare" class="org.jcommander.compare.perspective.ComparePerspectiveFactory" name="Compare" /> </extension> </plugin> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="lib" path="/org.apache.commons.vfs/commons-vfs-1.0-RC8-SNAPSHOT.jar"/> <classpathentry kind="output" path="bin"/> </classpath> |