You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by le...@apache.org on 2012/12/10 22:49:29 UTC

svn commit: r1419820 - /incubator/streams/streams-master-pom/trunk/pom.xml

Author: letourneau
Date: Mon Dec 10 21:49:28 2012
New Revision: 1419820

URL: http://svn.apache.org/viewvc?rev=1419820&view=rev
Log:
initial checkin

Added:
    incubator/streams/streams-master-pom/trunk/pom.xml

Added: incubator/streams/streams-master-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/streams/streams-master-pom/trunk/pom.xml?rev=1419820&view=auto
==============================================================================
--- incubator/streams/streams-master-pom/trunk/pom.xml (added)
+++ incubator/streams/streams-master-pom/trunk/pom.xml Mon Dec 10 21:49:28 2012
@@ -0,0 +1,107 @@
+<?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>
+
+  <prerequisites>
+    <maven>3.0</maven>
+  </prerequisites>
+  
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>10</version>
+    <relativePath />
+  </parent>
+
+  <groupId>org.apache.streams</groupId>
+  <artifactId>streams-master</artifactId>
+  <name>Apache Streams :: streams-master (Master POM)</name>
+  <description>Apache Streams Master Project</description>
+  <packaging>pom</packaging>
+  <version>0.1-SNAPSHOT</version>
+  
+  <inceptionYear>2012</inceptionYear>
+
+  <url>http://streams.apache.org/</url>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/streams/streams-master-pom/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/streams/streams-master-pom/trunk</developerConnection>
+    <url>http://svn.apache.org/viewvc/incubator/streams/streams-master-pom/trunk/</url>
+  </scm>
+
+  <mailingLists>
+
+    <mailingList>
+      <name>Streams Developer List</name>
+      <subscribe>dev-subscribe@streams.incubator.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@streams.incubator.apache.org</unsubscribe>
+      <post>mailto:dev@rstreams.incubator.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/streams-dev/</archive>
+    </mailingList>
+
+    <mailingList>
+      <name>Streams User List</name>
+      <subscribe>users-subscribe@streams.incubator.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@streams.incubator.apache.org</unsubscribe>
+      <post>mailto:users@streams.incubator.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/streams-users/</archive>
+    </mailingList>
+
+  </mailingLists>
+
+  <issueManagement>
+    <url>https://issues.apache.org/jira/browse/STREAMS</url>
+  </issueManagement>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+  
+  
+  <profiles>
+    <profile>
+      <id>pedantic</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.rat</groupId>
+            <artifactId>apache-rat-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>verify</phase>
+                <goals>
+                  <goal>check</goal>
+                </goals>
+              </execution>
+            </executions>
+            <configuration>
+              <excludes>
+                <exclude>**/MANIFEST.MF</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>
\ No newline at end of file