commons-math/pom.xml

332 lines
10 KiB
XML

<?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>11</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.0-SNAPSHOT</version>
<name>Commons Math</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://commons.apache.org/math/</url>
<issueManagement>
<system>jira</system>
<url>http://issues.apache.org/jira/browse/MATH</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/math/trunk</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/math/trunk</developerConnection>
<url>http://svn.apache.org/viewvc/commons/proper/math/trunk</url>
</scm>
<distributionManagement>
<site>
<id>people.apache.org</id>
<name>Commons Math</name>
<url>scp://people.apache.org/www/commons.apache.org/math</url>
</site>
</distributionManagement>
<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>Luc Maisonobe</name>
<id>luc</id>
<email>luc 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>
<developer>
<name>Bill Barker</name>
<id>billbarker</id>
<email>billbarker at apache dot org</email>
</developer>
</developers>
<contributors>
<contributor>
<name>C. Scott Ananian</name>
</contributor>
<contributor>
<name>R&#233;mi Arntzen</name>
</contributor>
<contributor>
<name>Cyril Briquet</name>
</contributor>
<contributor>
<name>Paul Cowan</name>
</contributor>
<contributor>
<name>Rodrigo di Lorenzo Lopes</name>
</contributor>
<contributor>
<name>Hasan Diwan</name>
</contributor>
<contributor>
<name>Ted Dunning</name>
</contributor>
<contributor>
<name>Ken Geis</name>
</contributor>
<contributor>
<name>Bernhard Gr&#252;newaldt</name>
</contributor>
<contributor>
<name>Elliotte Rusty Harold</name>
</contributor>
<contributor>
<name>Matthias Hummel</name>
</contributor>
<contributor>
<name>Ismael Juma</name>
</contributor>
<contributor>
<name>Piotr Kochanski</name>
</contributor>
<contributor>
<name>Bob MacCallum</name>
</contributor>
<contributor>
<name>Benjamin McCann</name>
</contributor>
<contributor>
<name>Fredrik Norin</name>
</contributor>
<contributor>
<name>Sujit Pal</name>
</contributor>
<contributor>
<name>Todd C. Parnell</name>
</contributor>
<contributor>
<name>Andreas Rieger</name>
</contributor>
<contributor>
<name>Gilles Sadowski</name>
</contributor>
<contributor>
<name>Joni Salonen</name>
</contributor>
<contributor>
<name>Christopher Schuck</name>
</contributor>
<contributor>
<name>Christian Semrau</name>
</contributor>
<contributor>
<name>Mauro Talevi</name>
</contributor>
<contributor>
<name>Kim van der Linde</name>
</contributor>
<contributor>
<name>J&#246;rg Weimar</name>
</contributor>
<contributor>
<name>Xiaogang Zhang</name>
</contributor>
</contributors>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<commons.componentid>math</commons.componentid>
<commons.release.version>1.2</commons.release.version>
<commons.binary.suffix></commons.binary.suffix>
<commons.jira.id>MATH</commons.jira.id>
<commons.jira.pid>12310485</commons.jira.pid>
<maven.compile.source>1.5</maven.compile.source>
<maven.compile.target>1.5</maven.compile.target>
</properties>
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<testResources>
<testResource>
<directory>src/test</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>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-1</version>
<configuration>
<descriptors>
<descriptor>src/assembly/src.xml</descriptor>
<descriptor>src/assembly/bin.xml</descriptor>
</descriptors>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.2.2</version>
<executions>
<execution>
<goals>
<!-- <goal>check</goal> -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.2</version>
<configuration>
<threshold>Normal</threshold>
<effort>Default</effort>
<excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.0</version>
<configuration>
<xmlPath>${basedir}/src/site/xdoc/changes.xml</xmlPath>
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.1</version>
<configuration>
<configLocation>${basedir}/checkstyle.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
<headerFile>${basedir}/license-header.txt</headerFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.2</version>
<configuration>
<rulesets>
<ruleset>checkstyle.xml</ruleset>
</rulesets>
<linkXref>true</linkXref>
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>clirr-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<minSeverity>info</minSeverity>
</configuration>
</plugin>
</plugins>
</reporting>
</project>