From: <re...@us...> - 2011-12-20 16:55:49
|
Revision: 1286 http://cishell.svn.sourceforge.net/cishell/?rev=1286&view=rev Author: rescdsk Date: 2011-12-20 16:55:38 +0000 (Tue, 20 Dec 2011) Log Message: ----------- Maven-ify, and move files to a feature Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.classpath trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.project Added Paths: ----------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.settings/ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.settings/org.eclipse.m2e.core.prefs trunk/clients/gui/org.cishell.reference.gui.brand.cishell/pom.xml Removed Paths: ------------- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/extra-files/ Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.classpath =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.classpath 2011-12-20 16:54:45 UTC (rev 1285) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.classpath 2011-12-20 16:55:38 UTC (rev 1286) @@ -1,7 +1,7 @@ -<?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="output" path="bin"/> -</classpath> +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> + <classpathentry kind="src" path="src/"/> + <classpathentry kind="output" path="target/classes"/> +</classpath> Modified: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.project =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.project 2011-12-20 16:54:45 UTC (rev 1285) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.project 2011-12-20 16:55:38 UTC (rev 1286) @@ -1,34 +1,40 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>org.cishell.reference.gui.brand.cishell</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> - <buildCommand> - <name>net.sourceforge.metrics.builder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.pde.PluginNature</nature> - <nature>org.eclipse.jdt.core.javanature</nature> - <nature>net.sourceforge.metrics.nature</nature> - </natures> -</projectDescription> +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.cishell.reference.gui.brand.cishell</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> + <buildCommand> + <name>net.sourceforge.metrics.builder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.m2e.core.maven2Builder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.m2e.core.maven2Nature</nature> + <nature>org.eclipse.pde.PluginNature</nature> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>net.sourceforge.metrics.nature</nature> + </natures> +</projectDescription> Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.settings/org.eclipse.m2e.core.prefs =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.settings/org.eclipse.m2e.core.prefs (rev 0) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/.settings/org.eclipse.m2e.core.prefs 2011-12-20 16:55:38 UTC (rev 1286) @@ -0,0 +1,5 @@ +#Tue Dec 20 10:59:07 EST 2011 +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 Added: trunk/clients/gui/org.cishell.reference.gui.brand.cishell/pom.xml =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.brand.cishell/pom.xml (rev 0) +++ trunk/clients/gui/org.cishell.reference.gui.brand.cishell/pom.xml 2011-12-20 16:55:38 UTC (rev 1286) @@ -0,0 +1,18 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <artifactId>org.cishell.reference.gui.brand.cishell</artifactId> + <packaging>eclipse-plugin</packaging> + <version>0.4.0</version> + <parent> + <groupId>org.cishell</groupId> + <artifactId>plugin-parent</artifactId> + <version>0.0.1</version> + <relativePath>../plugin-parent/pom.xml</relativePath> + </parent> + + <build> + <sourceDirectory>src</sourceDirectory> + </build> + +</project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |