Author: simonetripodi
Date: Wed Feb 29 09:10:18 2012
New Revision: 1295022

URL: http://svn.apache.org/viewvc?rev=1295022&view=rev
Log:
part of [CHAIN-55] created the empty submodules directories (not included in 
the reactor yet)

Added:
    commons/proper/chain/trunk/configuration/
    commons/proper/chain/trunk/configuration/pom.xml   (with props)
    commons/proper/chain/trunk/configuration/src/
    commons/proper/chain/trunk/configuration/src/main/
    commons/proper/chain/trunk/configuration/src/main/java/
    commons/proper/chain/trunk/configuration/src/test/
    commons/proper/chain/trunk/configuration/src/test/java/
    commons/proper/chain/trunk/configuration/src/test/resources/
    commons/proper/chain/trunk/core/
    commons/proper/chain/trunk/core/pom.xml   (with props)
    commons/proper/chain/trunk/core/src/
    commons/proper/chain/trunk/core/src/main/
    commons/proper/chain/trunk/core/src/main/java/
    commons/proper/chain/trunk/core/src/test/
    commons/proper/chain/trunk/core/src/test/java/
    commons/proper/chain/trunk/web/
    commons/proper/chain/trunk/web/pom.xml   (with props)
    commons/proper/chain/trunk/web/src/
    commons/proper/chain/trunk/web/src/main/
    commons/proper/chain/trunk/web/src/main/java/
    commons/proper/chain/trunk/web/src/test/
    commons/proper/chain/trunk/web/src/test/java/

Added: commons/proper/chain/trunk/configuration/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/configuration/pom.xml?rev=1295022&view=auto
==============================================================================
--- commons/proper/chain/trunk/configuration/pom.xml (added)
+++ commons/proper/chain/trunk/configuration/pom.xml Wed Feb 29 09:10:18 2012
@@ -0,0 +1,57 @@
+<?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.
+-->
+<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>
+
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-chain-parent</artifactId>
+    <version>2.0-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>commons-chain2-configuration</artifactId>
+
+  <name>Apache Commons Chains :: Configuration</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2</artifactId>
+      <version>${project.parent.version}</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}/../</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+
+</project>

Propchange: commons/proper/chain/trunk/configuration/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/chain/trunk/configuration/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: commons/proper/chain/trunk/configuration/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: commons/proper/chain/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/core/pom.xml?rev=1295022&view=auto
==============================================================================
--- commons/proper/chain/trunk/core/pom.xml (added)
+++ commons/proper/chain/trunk/core/pom.xml Wed Feb 29 09:10:18 2012
@@ -0,0 +1,48 @@
+<?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.
+-->
+<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>
+
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-chain-parent</artifactId>
+    <version>2.0-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>commons-chain2</artifactId>
+
+  <name>Apache Commons Chains :: Core</name>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}/../</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+
+</project>

Propchange: commons/proper/chain/trunk/core/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/chain/trunk/core/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: commons/proper/chain/trunk/core/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: commons/proper/chain/trunk/web/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/chain/trunk/web/pom.xml?rev=1295022&view=auto
==============================================================================
--- commons/proper/chain/trunk/web/pom.xml (added)
+++ commons/proper/chain/trunk/web/pom.xml Wed Feb 29 09:10:18 2012
@@ -0,0 +1,63 @@
+<?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.
+-->
+<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>
+
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-chain-parent</artifactId>
+    <version>2.0-SNAPSHOT</version>
+    <relativePath>../</relativePath>
+  </parent>
+
+  <artifactId>commons-chain2-web</artifactId>
+
+  <name>Apache Commons Chains :: Web</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2</artifactId>
+      <version>${project.parent.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2-configuration</artifactId>
+      <version>${project.parent.version}</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}/../</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>NOTICE.txt</include>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+
+</project>

Propchange: commons/proper/chain/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/chain/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: commons/proper/chain/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml


Reply via email to