You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ba...@apache.org on 2011/07/14 02:19:45 UTC

svn commit: r1146522 - in /maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy: expected/.project pom.xml

Author: baerrach
Date: Thu Jul 14 00:19:44 2011
New Revision: 1146522

URL: http://svn.apache.org/viewvc?rev=1146522&view=rev
Log:
Added groovy nature to IT test project "groovy"

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/expected/.project
    maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/expected/.project
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/expected/.project?rev=1146522&r1=1146521&r2=1146522&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/expected/.project (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/expected/.project Thu Jul 14 00:19:44 2011
@@ -9,5 +9,6 @@
   </buildSpec>
   <natures>
     <nature>org.eclipse.jdt.core.javanature</nature>
+    <nature>org.eclipse.jdt.groovy.core.groovyNature</nature>
   </natures>
 </projectDescription>
\ No newline at end of file

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/pom.xml?rev=1146522&r1=1146521&r2=1146522&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/groovy/pom.xml Thu Jul 14 00:19:44 2011
@@ -1,5 +1,4 @@
-<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/maven-v4_0_0.xsd">
+<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/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>foo</groupId>
   <artifactId>bar</artifactId>
@@ -13,8 +12,11 @@ xsi:schemaLocation="http://maven.apache.
         <version>test</version>
         <configuration>
           <workspace>${basedir}/../../eclipse/workspaceDoesNotExist</workspace>
+          <additionalProjectnatures>
+            <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
+          </additionalProjectnatures>
         </configuration>
-      </plugin>    
+      </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
@@ -41,7 +43,6 @@ xsi:schemaLocation="http://maven.apache.
           </dependency>
         </dependencies>
       </plugin>
-
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>build-helper-maven-plugin</artifactId>
@@ -75,7 +76,6 @@ xsi:schemaLocation="http://maven.apache.
       </plugin>
     </plugins>
   </build>
-
   <dependencies>
     <dependency>
       <groupId>org.codehaus.groovy</groupId>
@@ -89,4 +89,4 @@ xsi:schemaLocation="http://maven.apache.
       <scope>test</scope>
     </dependency>
   </dependencies>
-</project>
+</project>
\ No newline at end of file