You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jo...@apache.org on 2012/12/07 15:14:01 UTC

svn commit: r1418323 - /commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml

Author: jochen
Date: Fri Dec  7 14:14:00 2012
New Revision: 1418323

URL: http://svn.apache.org/viewvc?rev=1418323&view=rev
Log:
Initial import.

Added:
    commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml

Added: commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml?rev=1418323&view=auto
==============================================================================
--- commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml (added)
+++ commons/sandbox/jndi/trunk/commons-jndi-browser/pom.xml Fri Dec  7 14:14:00 2012
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+	<groupId>org.apache.commons</groupId>
+	<version>0.1-SNAPSHOT</version>
+	<modelVersion>4.0.0</modelVersion>
+	<name>JNDI Tomcat Demo</name>
+	<description>The xDWS Core</description>
+	<inceptionYear>2005</inceptionYear>
+	<packaging>war</packaging>
+	<build>
+	  <plugins>
+	    <plugin>
+	      <groupId>org.apache.maven.plugins</groupId>
+	      <artifactId>maven-war-plugin</artifactId>
+	      <version>2.3</version>
+	      <configuration>
+	        <webappDirectory>${project.build.directory}/xdws-webapp</webappDirectory>
+	      </configuration>
+	    </plugin>
+	  </plugins>
+	</build>
+	<dependencies>
+		<dependency>
+			<groupId>javax.servlet</groupId>
+			<artifactId>servlet-api</artifactId>
+			<version>2.5</version>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+	<properties>
+	  <project.build.sourceEncoding>UTF8</project.build.sourceEncoding>
+	</properties>
+	<artifactId>commons-jndi-browser</artifactId>
+	<parent>
+		<groupId>org.apache.commons</groupId>
+		<artifactId>commons-jndi</artifactId>
+		<version>0.1-SNAPSHOT</version>
+	</parent>
+</project>