You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by re...@apache.org on 2008/04/16 17:09:30 UTC

svn commit: r648714 - in /cocoon/trunk/subprojects: ./ cocoon-block-deployment/ cocoon-block-deployment/src/ cocoon-block-deployment/src/main/ cocoon-block-deployment/src/main/java/ cocoon-block-deployment/src/main/java/org/ cocoon-block-deployment/src...

Author: reinhard
Date: Wed Apr 16 08:09:27 2008
New Revision: 648714

URL: http://svn.apache.org/viewvc?rev=648714&view=rev
Log:
add root pom for submodules; add skeleton dir structure for blockdeployment

Added:
    cocoon/trunk/subprojects/cocoon-block-deployment/
    cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml   (with props)
    cocoon/trunk/subprojects/cocoon-block-deployment/src/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/java/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/java/org/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/java/org/apache/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/java/org/apache/cocoon/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/java/org/apache/cocoon/blockdeployment/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/main/resources/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/test/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/test/java/
    cocoon/trunk/subprojects/cocoon-block-deployment/src/test/resources/
    cocoon/trunk/subprojects/pom.xml   (with props)

Added: cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml?rev=648714&view=auto
==============================================================================
--- cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml (added)
+++ cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml Wed Apr 16 08:09:27 2008
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+ -->
+<!-- $Id$ -->
+<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>
+  <packaging>jar</packaging>
+
+  <parent>
+    <groupId>org.apache.cocoon</groupId>
+    <artifactId>cocoon</artifactId>
+    <version>6-SNAPSHOT</version>
+    <relativePath>../../parent/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>cocoon-block-deployment</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <name>Cocoon: Block Deployment</name>
+  <description>Deployment utiliities for Cocoon Blocks.</description>
+
+  <dependencies>
+    <!-- Test dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Propchange: cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: cocoon/trunk/subprojects/cocoon-block-deployment/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: cocoon/trunk/subprojects/pom.xml
URL: http://svn.apache.org/viewvc/cocoon/trunk/subprojects/pom.xml?rev=648714&view=auto
==============================================================================
--- cocoon/trunk/subprojects/pom.xml (added)
+++ cocoon/trunk/subprojects/pom.xml Wed Apr 16 08:09:27 2008
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<!-- $Id$ -->
+<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>
+  <packaging>pom</packaging>
+  
+  <groupId>org.apache.cocoon</groupId>
+  <artifactId>cocoon-subproject-modules</artifactId>
+  <version>6-SNAPSHOT</version>
+  <name>Cocoon Subprojects [modules]</name>
+
+  <modules>
+    <module>cocoon-jnet</module>
+    <module>cocoon-block-deployment</module>
+  </modules>
+  
+</project>

Propchange: cocoon/trunk/subprojects/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/trunk/subprojects/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Id

Propchange: cocoon/trunk/subprojects/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml