You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2012/02/29 10:27:15 UTC

svn commit: r1295030 - in /commons/proper/chain/trunk/dist: ./ pom.xml src/ src/main/

Author: simonetripodi
Date: Wed Feb 29 09:27:15 2012
New Revision: 1295030

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

Added:
    commons/proper/chain/trunk/dist/
    commons/proper/chain/trunk/dist/pom.xml   (with props)
    commons/proper/chain/trunk/dist/src/
    commons/proper/chain/trunk/dist/src/main/

Added: commons/proper/chain/trunk/dist/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/chain/trunk/dist/pom.xml?rev=1295030&view=auto
==============================================================================
--- commons/proper/chain/trunk/dist/pom.xml (added)
+++ commons/proper/chain/trunk/dist/pom.xml Wed Feb 29 09:27:15 2012
@@ -0,0 +1,95 @@
+<?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-dist</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Apache Commons Chains :: Distribution Packages</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2</artifactId>
+      <version>${project.parent.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2-configuration</artifactId>
+      <version>${project.parent.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>${project.groupId}</groupId>
+      <artifactId>commons-chain2-web</artifactId>
+      <version>${project.parent.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>single</goal>
+            </goals>
+            <phase>package</phase>
+          </execution>
+        </executions>
+        <configuration>
+          <descriptors>
+            <descriptor>${basedir}/src/main/assembly/bin.xml</descriptor>
+            <descriptor>${basedir}/src/main/assembly/src.xml</descriptor>
+          </descriptors>
+          <tarLongFileMode>gnu</tarLongFileMode>
+          <attach>false</attach>
+          <finalName>commons-digester3-${project.version}</finalName>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <profile>
+      <id>rc</id>
+      <build>
+        
+      </build>
+    </profile>
+  </profiles>
+
+</project>

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

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

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