You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2007/08/24 02:30:34 UTC

svn commit: r569199 - /commons/proper/discovery/trunk/pom.xml

Author: bayard
Date: Thu Aug 23 17:30:33 2007
New Revision: 569199

URL: http://svn.apache.org/viewvc?rev=569199&view=rev
Log:
M2 build file. One of the tests is not failing

Added:
    commons/proper/discovery/trunk/pom.xml   (with props)

Added: commons/proper/discovery/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/discovery/trunk/pom.xml?rev=569199&view=auto
==============================================================================
--- commons/proper/discovery/trunk/pom.xml (added)
+++ commons/proper/discovery/trunk/pom.xml Thu Aug 23 17:30:33 2007
@@ -0,0 +1,153 @@
+<?xml version="1.0"?>
+<!--
+   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">
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-parent</artifactId>
+    <version>4</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>commons-discovery</groupId>
+  <artifactId>commons-discovery</artifactId>
+  <version>0.5-SNAPSHOT</version>
+  <name>Commons Discovery</name>
+
+  <inceptionYear>2002</inceptionYear>
+  <description>Commons Discovery</description>
+
+  <url>http://commons.apache.org/discovery/</url>
+
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/DISCOVERY</url>
+  </issueManagement>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/discovery/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/discovery/trunk</developerConnection>
+    <url>http://svn.apache.org/viewvc/commons/proper/discovery/trunk</url>
+  </scm>
+
+  <developers>
+    <developer>
+      <name>Richard Sitze</name>
+      <id>rsitze</id>
+      <email></email>
+      <organization></organization>
+    </developer>
+    <developer>
+      <name>Craig R. McClanahan</name>
+      <id>craigmcc</id>
+      <email></email>
+      <organization></organization>
+    </developer>
+    <developer>
+      <name>Costin Manolache</name>
+      <id>costin</id>
+      <email></email>
+      <organization></organization>
+    </developer>
+    <developer>
+      <name>James Strachan</name>
+      <id>jstrachan</id>
+      <email>jstrachan@apache.org</email>
+      <organization>SpiritSoft, Inc.</organization>
+    </developer>
+    <developer>
+      <name>Matthew Hawthorne</name>
+      <id>matth</id>
+      <email>matth@apache.org</email>
+    </developer>
+    <developer>
+      <name>Davanum Srinivas</name>
+      <id>dims</id>
+      <email>dims@apache.org</email>
+    </developer>
+    <developer>
+      <name>Rory Winston</name>
+      <id>rwinston</id>
+      <email>rwinston@eircom.net</email>
+    </developer>
+    <developer>
+      <name>Robert Burrell Donkin</name>
+      <id>rdonkin</id>
+      <email>rdonkin@apache.org</email>
+    </developer>
+  </developers>
+
+  <dependencies>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>.</directory>
+        <targetPath>META-INF</targetPath>
+          <includes>
+            <include>NOTICE.txt</include>
+            <include>LICENSE.txt</include>
+          </includes>
+        </resource>
+      </resources>
+
+      <testResources>
+        <testResource>
+          <directory>${basedir}/src</directory>
+          <includes>
+            <include>**/testResource</include>
+          </includes>
+        </testResource>
+        <testResource>
+          <directory>${basedir}/src/test</directory>
+          <includes>
+            <include>**/*.properties</include>
+            <include>META-INF/**</include>
+          </includes>
+        </testResource>
+      </testResources>
+
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <includes>
+                <include>**/TestAll.java</include>
+              </includes>
+          </configuration>
+        </plugin>
+      </plugins>
+    </build>
+
+</project>

Propchange: commons/proper/discovery/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native