You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by bd...@apache.org on 2006/06/27 16:58:32 UTC

svn commit: r417479 - in /cocoon/whiteboard/example-apps/bricks-archetype: ./ pom.xml

Author: bdelacretaz
Date: Tue Jun 27 07:58:32 2006
New Revision: 417479

URL: http://svn.apache.org/viewvc?rev=417479&view=rev
Log:
starts now

Modified:
    cocoon/whiteboard/example-apps/bricks-archetype/   (props changed)
    cocoon/whiteboard/example-apps/bricks-archetype/pom.xml

Propchange: cocoon/whiteboard/example-apps/bricks-archetype/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Jun 27 07:58:32 2006
@@ -0,0 +1,4 @@
+.project
+.classpath
+target
+bin

Modified: cocoon/whiteboard/example-apps/bricks-archetype/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/whiteboard/example-apps/bricks-archetype/pom.xml?rev=417479&r1=417478&r2=417479&view=diff
==============================================================================
--- cocoon/whiteboard/example-apps/bricks-archetype/pom.xml (original)
+++ cocoon/whiteboard/example-apps/bricks-archetype/pom.xml Tue Jun 27 07:58:32 2006
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-  Copyright 2006 The Apache Software Foundation
+  Copyright 2005 The Apache Software Foundation
   
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
@@ -14,17 +14,24 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
+<!--+
+  | @version $Id: pom.xml 410330 2006-05-30 17:57:42Z cziegeler $
+  |
+  +-->
 <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">
-  
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    
   <modelVersion>4.0.0</modelVersion>
-  <packaging>jar</packaging>
   
-  <name>bricks</name>
-    
-  <groupId>org.apache.cocoon</groupId>
-  <artifactId>bricks</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <parent>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon-core-modules</artifactId>
+    <version>1-SNAPSHOT</version>    
+  </parent>
+  
+  <artifactId>cocoon-bricks</artifactId>
+  <packaging>war</packaging>
+  <name>Core Webapp</name>
   
   <build>
     <plugins>
@@ -35,7 +42,7 @@
         <configuration>
           <serverVersion>2.2</serverVersion>
         </configuration>
-      </plugin>  
+      </plugin>
       <plugin>
         <groupId>org.mortbay.jetty</groupId>
         <artifactId>maven-jetty6-plugin</artifactId>
@@ -50,22 +57,59 @@
           <webAppSourceDirectory>./target/cocoon-webapp</webAppSourceDirectory>
           <contextPath>/</contextPath>
         </configuration>
-      </plugin>    
+      </plugin>
     </plugins>
-    <finalName>cocoon-webapp</finalName>    
-  </build>  
+    <finalName>cocoon-webapp</finalName>
+  </build>
   
   <dependencies>
     <dependency>
       <groupId>org.apache.cocoon</groupId>
       <artifactId>cocoon-core</artifactId>
       <version>2.2.0-SNAPSHOT</version>
-    </dependency>   
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-deployer-plugin-demo</artifactId>
+      <version>1.0.0-SNAPSHOT</version>      
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-core-samples-main-sample</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-core-samples-additional-sample</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-ajax-sample</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>    
     <dependency>
       <groupId>org.apache.cocoon</groupId>
-      <artifactId>cocoon-forms-impl</artifactId>
+      <artifactId>cocoon-forms-sample</artifactId>
       <version>1.0.0-SNAPSHOT</version>
-    </dependency>     
-  </dependencies> 
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-fop-sample</artifactId>
+      <version>1.0.0-SNAPSHOT</version>
+    </dependency>    
+  </dependencies>
+  
+  <pluginRepositories>
+    <pluginRepository>
+      <id>snapshots</id>
+      <url>http://snapshots.maven.codehaus.org/maven2</url>
+    </pluginRepository>
+    <pluginRepository>
+      <id>mortbay-repo</id>
+      <name>mortbay-repo</name>
+      <url>http://www.mortbay.org/maven2/release</url>
+    </pluginRepository>
+  </pluginRepositories>
   
 </project>