Maven 2 pom for Math. Tests that use getClass().getResource(String) don't work at the moment, unsure how to fix currently.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@502139 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d72010f440
commit
f55f1566f0
|
@ -0,0 +1,205 @@
|
|||
<?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 mathuage 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>1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>commons-math</groupId>
|
||||
<artifactId>commons-math</artifactId>
|
||||
<version>1.2-SNAPSHOT</version>
|
||||
<name>Lang</name>
|
||||
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
<description>The Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang.</description>
|
||||
|
||||
<url>http://jakarta.apache.org/commons/math/</url>
|
||||
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://issues.apache.org/jira/browse/MATH</url>
|
||||
</issueManagement>
|
||||
|
||||
<scm>
|
||||
<connection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk</connection>
|
||||
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk</developerConnection>
|
||||
<url>http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk</url>
|
||||
</scm>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Albert Davidson Chou</name>
|
||||
<id>achou</id>
|
||||
<email>achou at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Mark Diggory</name>
|
||||
<id>mdiggory</id>
|
||||
<email>mdiggory at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Robert Burrell Donkin</name>
|
||||
<id>rdonkin</id>
|
||||
<email>rdonkin at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Tim O'Brien</name>
|
||||
<id>tobrien</id>
|
||||
<email>tobrien at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>J. Pietschmann</name>
|
||||
<id>pietsch</id>
|
||||
<email>j3322ptm at yahoo dot de</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Phil Steitz</name>
|
||||
<id>psteitz</id>
|
||||
<email>psteitz at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Brent Worden</name>
|
||||
<id>brentworden</id>
|
||||
<email>brentworden at apache dot org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>C. Scott Ananian</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rodrigo di Lorenzo Lopes</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ken Geis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Elliotte Rusty Harold</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Piotr Kochanski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Luc Maisonobe</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Fredrik Norin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Todd C. Parnell</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joni Salonen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Schuck</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mauro Talevi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Kim van der Linde</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jörg Weimar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Xiaogang Zhang</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-logging</groupId>
|
||||
<artifactId>commons-logging</artifactId>
|
||||
<version>1.0.4</version>
|
||||
<!--
|
||||
<properties>
|
||||
<comment>
|
||||
Only required when commons-discovery is used for class factory
|
||||
configuration. No hard compile or runtime dependency.
|
||||
</comment>
|
||||
</properties>
|
||||
-->
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-discovery</groupId>
|
||||
<artifactId>commons-discovery</artifactId>
|
||||
<version>0.2</version>
|
||||
<!--
|
||||
<properties>
|
||||
<comment>
|
||||
Only required when commons-discovery is used for class
|
||||
factory configuration. No hard compile or runtime dependency.
|
||||
</comment>
|
||||
</properties>
|
||||
-->
|
||||
<optional>true</optional>
|
||||
</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>${pom.build.unitTestSourceDirectory}</directory>
|
||||
<includes>
|
||||
<include>**/*.xml</include>
|
||||
<include>**/*.txt</include>
|
||||
</includes>
|
||||
</testResource>
|
||||
</testResources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/*AbstractTest.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
Loading…
Reference in New Issue