You are viewing a plain text version of this content. The canonical link for it is here.
Posted to awf-commits@incubator.apache.org by jm...@apache.org on 2012/02/13 23:13:09 UTC

svn commit: r1243734 - in /incubator/deft/trunk/awf-parent: ./ pom.xml src/ src/site/

Author: jmeehan
Date: Mon Feb 13 23:13:08 2012
New Revision: 1243734

URL: http://svn.apache.org/viewvc?rev=1243734&view=rev
Log:
DEFT-198 - New Project: Apache AWF Parent

Added:
    incubator/deft/trunk/awf-parent/
    incubator/deft/trunk/awf-parent/pom.xml
    incubator/deft/trunk/awf-parent/src/
    incubator/deft/trunk/awf-parent/src/site/

Added: incubator/deft/trunk/awf-parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/deft/trunk/awf-parent/pom.xml?rev=1243734&view=auto
==============================================================================
--- incubator/deft/trunk/awf-parent/pom.xml (added)
+++ incubator/deft/trunk/awf-parent/pom.xml Mon Feb 13 23:13:08 2012
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+	<!--
+		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/xsd/maven-4.0.0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<groupId>org.apache.awf</groupId>
+	<artifactId>awf-parent</artifactId>
+	<version>0.4.0-SNAPSHOT</version>
+	<packaging>pom</packaging>
+
+	<name>Apache AWF Parent</name>
+
+	<!-- Please keep AWF references at the top, and
+		all others in alphabetical order. -->
+	<properties>
+		<awf.core.version>0.4.0-SNAPSHOT</awf.core.version>
+
+		<activation.version>1.1.1</activation.version>
+		<guava.version>r08</guava.version>
+		<json-simple.version>1.1</json-simple.version>
+		<httpclient.version>4.1</httpclient.version>
+		<junit.version>4.8.2</junit.version>
+		<logback.version>0.9.28</logback.version>
+		<mockito.version>1.8.5</mockito.version>
+		<ning.version>1.6.1</ning.version>
+		<powermock.version>1.4.10</powermock.version>
+	</properties>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>org.apache.awf</groupId>
+				<artifactId>awf-core</artifactId>
+				<version>${awf.core.version}</version>
+			</dependency>
+
+			<dependency>
+				<groupId>javax.activation</groupId>
+				<artifactId>activation</artifactId>
+				<version>${activation.version}</version>
+			</dependency>
+			
+			<dependency>
+				<groupId>com.google.guava</groupId>
+				<artifactId>guava</artifactId>
+				<version>${guava.version}</version>
+			</dependency>
+			
+			<dependency>
+				<groupId>com.googlecode.json-simple</groupId>
+				<artifactId>json-simple</artifactId>
+				<version>${json-simple.version}</version>
+			</dependency>
+			
+			<dependency>
+				<groupId>org.apache.httpcomponents</groupId>
+				<artifactId>httpclient</artifactId>
+				<version>${httpclient.version}</version>
+				<scope>test</scope>
+			</dependency>
+			
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>${junit.version}</version>
+				<type>jar</type>
+				<scope>test</scope>
+			</dependency>
+			
+			<dependency>
+				<groupId>ch.qos.logback</groupId>
+				<artifactId>logback-classic</artifactId>
+				<version>${logback.version}</version>
+				<type>jar</type>
+			</dependency>
+			
+			<dependency>
+				<groupId>org.mockito</groupId>
+				<artifactId>mockito-core</artifactId>
+				<version>${mockito.version}</version>
+				<scope>test</scope>
+			</dependency>
+			
+			<dependency>
+				<groupId>com.ning</groupId>
+				<artifactId>async-http-client</artifactId>
+				<version>${ning.version}</version>
+				<scope>test</scope>
+			</dependency>
+			
+			<dependency>
+				<groupId>org.powermock</groupId>
+				<artifactId>powermock-module-junit4</artifactId>
+				<version>${powermock.version}</version>
+				<scope>test</scope>
+			</dependency>
+			<dependency>
+				<groupId>org.powermock</groupId>
+				<artifactId>powermock-api-mockito</artifactId>
+				<version>${powermock.version}</version>
+				<scope>test</scope>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+	
+	<modules>
+		<module>../awf-core</module>
+		<module>../awf-example-gossip</module>
+		<module>../awf-example-handlers</module>
+	</modules>
+</project>
\ No newline at end of file