|
Commons Math example source code file (pom.xml)
The Commons Math pom.xml source code<?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 <artifactId>commons-parent <version>14 </parent> <modelVersion>4.0.0 <groupId>org.apache.commons <artifactId>commons-math <version>2.1 <name>Commons Math <inceptionYear>2003 <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. <url>http://commons.apache.org/math/ <issueManagement> <system>jira <url>http://issues.apache.org/jira/browse/MATH </issueManagement> <scm> <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/math/trunk <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/math/trunk <url>http://svn.apache.org/viewvc/commons/proper/math/trunk </scm> <distributionManagement> <site> <id>people.apache.org <name>Commons Math <url>scp://people.apache.org/www/commons.apache.org/math </site> </distributionManagement> <developers> <developer> <name>Bill Barker <id>billbarker <email>billbarker at apache dot org </developer> <developer> <name>Albert Davidson Chou <id>achou <email>achou at apache dot org </developer> <developer> <name>Mark Diggory <id>mdiggory <email>mdiggory at apache dot org </developer> <developer> <name>Robert Burrell Donkin <id>rdonkin <email>rdonkin at apache dot org </developer> <developer> <name>Tim O'Brien <id>tobrien <email>tobrien at apache dot org </developer> <developer> <name>Luc Maisonobe <id>luc <email>luc at apache dot org </developer> <developer> <name>J. Pietschmann <id>pietsch <email>j3322ptm at yahoo dot de </developer> <developer> <name>Dimitri Pourbaix <id>dimpbx <email>dimpbx at apache dot org </developer> <developer> <name>Phil Steitz <id>psteitz <email>psteitz at apache dot org </developer> <developer> <name>Brent Worden <id>brentworden <email>brentworden at apache dot org </developer> <developer> <name>Gilles Sadowski <id>erans <email>erans at apache dot org </developer> </developers> <contributors> <contributor> <name>C. Scott Ananian </contributor> <contributor> <name>Mikkel Meyer Andersen </contributor> <contributor> <name>Mark Anderson </contributor> <contributor> <name>Rémi Arntzen </contributor> <contributor> <name>Michael Bjorkegren </contributor> <contributor> <name>John Bollinger </contributor> <contributor> <name>Cyril Briquet </contributor> <contributor> <name>Paul Cowan </contributor> <contributor> <name>Benjamin Croizet </contributor> <contributor> <name>Larry Diamond </contributor> <contributor> <name>Rodrigo di Lorenzo Lopes </contributor> <contributor> <name>Hasan Diwan </contributor> <contributor> <name>Ted Dunning </contributor> <contributor> <name>John Gant </contributor> <contributor> <name>Ken Geis </contributor> <contributor> <name>Bernhard Grünewaldt </contributor> <contributor> <name>Elliotte Rusty Harold </contributor> <contributor> <name>Matthias Hummel </contributor> <contributor> <name>Ismael Juma </contributor> <contributor> <name>Eugene Kirpichov </contributor> <contributor> <name>Piotr Kochanski </contributor> <contributor> <name>Bob MacCallum </contributor> <contributor> <name>Jake Mannix </contributor> <contributor> <name>Benjamin McCann </contributor> <contributor> <name>Fredrik Norin </contributor> <contributor> <name>Sujit Pal </contributor> <contributor> <name>Todd C. Parnell </contributor> <contributor> <name>Andreas Rieger </contributor> <contributor> <name>Matthew Rowles </contributor> <contributor> <name>Joni Salonen </contributor> <contributor> <name>Christopher Schuck </contributor> <contributor> <name>Christian Semrau </contributor> <contributor> <name>David Stefka </contributor> <contributor> <name>Mauro Talevi </contributor> <contributor> <name>Kim van der Linde </contributor> <contributor> <name>Jörg Weimar </contributor> <contributor> <name>Xiaogang Zhang </contributor> </contributors> <dependencies> <dependency> <groupId>junit <artifactId>junit <version>4.4 <scope>test </dependency> </dependencies> <properties> <commons.componentid>math <commons.release.version>2.1 <commons.binary.suffix> <commons.jira.id>MATH <commons.jira.pid>12310485 <maven.compile.source>1.5 <maven.compile.target>1.5 <project.build.sourceEncoding>UTF-8 <project.reporting.outputEncoding>UTF-8 </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-surefire-plugin <configuration> <includes> <include>**/*Test.java <include>**/*TestBinary.java <include>**/*TestPermutations.java </includes> <excludes> <exclude>**/*AbstractTest.java </excludes> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin <version>2.2-beta-4 <configuration> <descriptors> <descriptor>src/main/assembly/src.xml <descriptor>src/main/assembly/bin.xml </descriptors> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo <artifactId>clirr-maven-plugin <version>2.2.2 <executions> <execution> <goals> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo <artifactId>findbugs-maven-plugin <version>2.1 <configuration> <threshold>Normal <effort>Default <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-changes-plugin <version>2.3 <configuration> <xmlPath>${basedir}/src/site/xdoc/changes.xml <issueLinkTemplatePerSystem> <default>%URL%/%ISSUE% </issueLinkTemplatePerSystem> <template>math-release-notes.vm <templateDirectory>templates </configuration> <reportSets> <reportSet> <reports> <report>changes-report </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins <artifactId>maven-checkstyle-plugin <version>2.3 <configuration> <configLocation>${basedir}/checkstyle.xml <enableRulesSummary>false <headerFile>${basedir}/license-header.txt </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo <artifactId>clirr-maven-plugin <version>2.2.2 <configuration> <minSeverity>info </configuration> </plugin> </plugins> </reporting> </project> Other Commons Math examples (source code examples)Here is a short list of links related to this Commons Math pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.