Author: rob Date: Mon Nov 29 14:45:58 2010 New Revision: 24917 URL: https://svn.nixos.org/websvn/nix/?rev=24917&sc=1
Log: nix-eclipse: add feature and update site projects Added: nix-eclipse/trunk/org.nix.editor.feature/ nix-eclipse/trunk/org.nix.editor.feature/.project nix-eclipse/trunk/org.nix.editor.feature/build.properties nix-eclipse/trunk/org.nix.editor.feature/feature.xml nix-eclipse/trunk/org.nix.editor.updatesite/ nix-eclipse/trunk/org.nix.editor.updatesite/.project nix-eclipse/trunk/org.nix.editor.updatesite/features/ nix-eclipse/trunk/org.nix.editor.updatesite/plugins/ nix-eclipse/trunk/org.nix.editor.updatesite/site.xml Modified: nix-eclipse/trunk/org.nix.editor/META-INF/MANIFEST.MF Added: nix-eclipse/trunk/org.nix.editor.feature/.project ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nix-eclipse/trunk/org.nix.editor.feature/.project Mon Nov 29 14:45:58 2010 (r24917) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.nix.editor.feature</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.pde.FeatureBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.pde.FeatureNature</nature> + </natures> +</projectDescription> Added: nix-eclipse/trunk/org.nix.editor.feature/build.properties ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nix-eclipse/trunk/org.nix.editor.feature/build.properties Mon Nov 29 14:45:58 2010 (r24917) @@ -0,0 +1 @@ +bin.includes = feature.xml Added: nix-eclipse/trunk/org.nix.editor.feature/feature.xml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nix-eclipse/trunk/org.nix.editor.feature/feature.xml Mon Nov 29 14:45:58 2010 (r24917) @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8"?> +<feature + id="org.nix.editor.feature" + label="Nix Editor Feature" + version="1.0.3.qualifier"> + + <description url="http://www.example.com/description"> + [Enter Feature Description here.] + </description> + + <copyright url="http://www.example.com/copyright"> + [Enter Copyright Description here.] + </copyright> + + <license url="http://www.example.com/license"> + [Enter License Description here.] + </license> + + <includes + id="org.strategoxt.imp" + version="0.0.0"/> + + <plugin + id="org.nix.editor" + download-size="0" + install-size="0" + version="1.0.3.qualifier"/> + +</feature> Added: nix-eclipse/trunk/org.nix.editor.updatesite/.project ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nix-eclipse/trunk/org.nix.editor.updatesite/.project Mon Nov 29 14:45:58 2010 (r24917) @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.nix.editor.updatesite</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.pde.UpdateSiteBuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.pde.UpdateSiteNature</nature> + </natures> +</projectDescription> Added: nix-eclipse/trunk/org.nix.editor.updatesite/site.xml ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ nix-eclipse/trunk/org.nix.editor.updatesite/site.xml Mon Nov 29 14:45:58 2010 (r24917) @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<site> + <feature url="features/org.nix.editor.feature_1.0.3.qualifier.jar" id="org.nix.editor.feature" version="1.0.3.qualifier"> + <category name="Nix"/> + </feature> + <category-def name="Nix" label="Nix"/> +</site> Modified: nix-eclipse/trunk/org.nix.editor/META-INF/MANIFEST.MF ============================================================================== --- nix-eclipse/trunk/org.nix.editor/META-INF/MANIFEST.MF Mon Nov 29 14:32:49 2010 (r24916) +++ nix-eclipse/trunk/org.nix.editor/META-INF/MANIFEST.MF Mon Nov 29 14:45:58 2010 (r24917) @@ -4,17 +4,20 @@ Bundle-SymbolicName: org.nix.editor;singleton:=true Bundle-Version: 1.0.3 Bundle-Activator: Nix.Activator -Import-Package: org.osgi.framework;version="1.3.0" +Import-Package: org.osgi.framework;version="1.3.0", + org.strategoxt.lang Require-Bundle: org.eclipse.core.runtime, - org.eclipse.core.resources, - org.eclipse.imp.runtime, - org.eclipse.ui, - lpg.runtime, - org.eclipse.jface.text, - org.eclipse.ui.editors, - org.eclipse.ui.workbench.texteditor, - org.strategoxt.imp.runtime, - org.spoofax.aterm, - org.spoofax.jsglr + org.eclipse.core.resources, + org.eclipse.imp.runtime, + org.eclipse.ui, + lpg.runtime, + org.eclipse.jface.text, + org.eclipse.ui.editors, + org.eclipse.ui.workbench.texteditor, + org.strategoxt.imp.runtime, + org.spoofax.aterm, + org.spoofax.jsglr, + org.spoofax.interpreter.core, + org.strategoxt.strj Bundle-RequiredExecutionEnvironment: J2SE-1.5 Export-Package: Nix _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
