You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devicemap.apache.org by wk...@apache.org on 2014/07/30 21:58:25 UTC

svn commit: r1614754 - /incubator/devicemap/trunk/examples/ddr-filter/pom.xml

Author: wkeil
Date: Wed Jul 30 19:58:25 2014
New Revision: 1614754

URL: http://svn.apache.org/r1614754
Log:
DMAP-35: Refactor Simple DDR 
Adding simple DDR filter example
Task-Url: https://issues.apache.org/jira/browse/DMAP-35

Modified:
    incubator/devicemap/trunk/examples/ddr-filter/pom.xml

Modified: incubator/devicemap/trunk/examples/ddr-filter/pom.xml
URL: http://svn.apache.org/viewvc/incubator/devicemap/trunk/examples/ddr-filter/pom.xml?rev=1614754&r1=1614753&r2=1614754&view=diff
==============================================================================
--- incubator/devicemap/trunk/examples/ddr-filter/pom.xml (original)
+++ incubator/devicemap/trunk/examples/ddr-filter/pom.xml Wed Jul 30 19:58:25 2014
@@ -1,21 +1,51 @@
 <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>
-  <groupId>org.apache.devicemap.examples</groupId>
-  <artifactId>dmap-ddr-filter</artifactId>
-  <packaging>war</packaging>
-  <version>0.0.1-SNAPSHOT</version>
-  <name>dmap-ddr-filter Maven Webapp</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  <build>
-    <finalName>dmap-ddr-filter</finalName>
-  </build>
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>dmap-ddr-filter</artifactId>
+	<packaging>war</packaging>
+	<version>0.0.1-SNAPSHOT</version>
+	<name>dmap-ddr-filter Maven Webapp</name>
+	<url>http://maven.apache.org</url>
+	<build>
+		<finalName>dmap-ddr-filter</finalName>
+	</build>
+	<parent>
+		<groupId>org.apache.devicemap.examples</groupId>
+		<artifactId>examples-parent</artifactId>
+		<version>1.0.0-SNAPSHOT</version>
+	</parent>
+	<properties>
+		<devicemap.ddr.version>1.0.0</devicemap.ddr.version>
+	</properties>
+	<dependencies>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.4</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.devicemap</groupId>
+			<artifactId>devicemap-simpleddr</artifactId>
+			<version>${devicemap.ddr.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.devicemap</groupId>
+			<artifactId>devicemap-data</artifactId>
+			<version>${devicemap.data.version}</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.devicemap</groupId>
+			<artifactId>devicemap-test-data</artifactId>
+			<version>${devicemap.data.version}</version>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.11</version>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
 </project>