You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by ol...@apache.org on 2008/09/13 15:36:04 UTC

svn commit: r694943 - /labs/droids/trunk/pom.xml

Author: olegk
Date: Sat Sep 13 06:36:04 2008
New Revision: 694943

URL: http://svn.apache.org/viewvc?rev=694943&view=rev
Log:
LABS-143: Maven POM for Droids

Added:
    labs/droids/trunk/pom.xml   (with props)

Added: labs/droids/trunk/pom.xml
URL: http://svn.apache.org/viewvc/labs/droids/trunk/pom.xml?rev=694943&view=auto
==============================================================================
--- labs/droids/trunk/pom.xml (added)
+++ labs/droids/trunk/pom.xml Sat Sep 13 06:36:04 2008
@@ -0,0 +1,150 @@
+<?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.
+   ====================================================================
+
+   This software consists of voluntary contributions made by many
+   individuals on behalf of the Apache Software Foundation.  For more
+   information on the Apache Software Foundation, please see
+   <http://www.apache.org />.
+ -->
+
+<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.labs</groupId>
+  <artifactId>droids</artifactId>
+  <version>0.1-SNAPSHOT</version>
+  <name>Droids</name>
+  <inceptionYear>2007</inceptionYear>
+  <description>
+   Droids - an intelligent robot framework
+  </description>
+  <url>http://labs.apache.org/</url>
+  <packaging>jar</packaging>  
+
+  <licenses>
+    <license>
+      <name>Apache License</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/labs/droids/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/labs/droids/trunk/</developerConnection>
+    <url>http://svn.apache.org/repos/asf/labs/droids/trunk/</url>
+  </scm>
+
+  <properties>
+    <maven.compile.source>1.5</maven.compile.source>
+    <maven.compile.target>1.5</maven.compile.target>
+    <maven.compile.optimize>true</maven.compile.optimize>
+    <maven.compile.deprecation>true</maven.compile.deprecation>
+    <commons-logging.version>1.1.1</commons-logging.version>
+    <cocoon-spring-configurator.version>2.0.0</cocoon-spring-configurator.version>
+    <stax-api.version>1.0.1</stax-api.version>
+    <wstx-asl.version>3.2.4</wstx-asl.version>
+    <httpclient.version>4.0-beta1</httpclient.version>
+    <nekohtml.version>1.9.6.2</nekohtml.version>
+    <junit.version>4.5</junit.version>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>${commons-logging.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cocoon</groupId>
+      <artifactId>cocoon-spring-configurator</artifactId>
+      <version>${cocoon-spring-configurator.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-stax-api_1.0_spec</artifactId>
+      <version>${stax-api.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>wstx-asl</artifactId>
+      <version>${wstx-asl.version}</version>
+      <scope>runtime</scope>
+			<exclusions>
+				<exclusion>
+					<groupId>stax</groupId>
+					<artifactId>stax-api</artifactId>
+				</exclusion>
+			</exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+      <version>${httpclient.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>nekohtml</groupId>
+      <artifactId>nekohtml</artifactId>
+      <version>${nekohtml.version}</version>
+			<exclusions>
+				<exclusion>
+					<groupId>xml-apis</groupId>
+					<artifactId>xml-apis</artifactId>
+				</exclusion>
+			</exclusions>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>src/core/java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>src/core/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/*.xml</include>
+            <include>**/*.properties</include>
+            <include>**/*.txt</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>${maven.compile.source}</source>
+          <target>${maven.compile.target}</target>
+          <optimize>${maven.compile.optimize}</optimize>
+          <showDeprecations>${maven.compile.deprecation}</showDeprecations>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>

Propchange: labs/droids/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: labs/droids/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: labs/droids/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org