You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jh...@apache.org on 2005/12/08 21:17:39 UTC

svn commit: r355191 - /cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml

Author: jheymans
Date: Thu Dec  8 12:17:35 2005
New Revision: 355191

URL: http://svn.apache.org/viewcvs?rev=355191&view=rev
Log:
correcting dependencies for new structure

Modified:
    cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml

Modified: cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewcvs/cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml?rev=355191&r1=355190&r2=355191&view=diff
==============================================================================
--- cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml (original)
+++ cocoon/whiteboard/maven2/cocoon-archetype-core/src/main/resources/archetype-resources/pom.xml Thu Dec  8 12:17:35 2005
@@ -1,8 +1,8 @@
 <project>
   <parent>
-      <groupId>apache-cocoon</groupId>
-      <artifactId>cocoon</artifactId>
-      <version>2.2</version>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>2.2</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <!-- the groupId of your application -->
@@ -14,17 +14,24 @@
   <version>0.1alpha</version>
   <name>The Application Name</name>
   <url>http://cocoon.apache.org</url>
+  <repositories>
+    <repository>
+      <id>apache-maven-snapshot</id>
+      <name>Apache Maven Snapshot Repository</name>
+      <url>http://cvs.apache.org/maven-snapshot-repository</url>
+    </repository>
+  </repositories>
   <dependencies>
-      <dependency>
-        <groupId>apache-cocoon</groupId>
-        <artifactId>cocoon-core</artifactId>
-        <version>2.2.0-SNAPSHOT</version>
-      </dependency>
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>3.8.1</version>
-        <scope>test</scope>
-      </dependency>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-core</artifactId>
+      <version>2.2.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 </project>