POM file standardization.
Cf. https://markmail.org/message/obiklp3oeuu7y2fc
This commit is contained in:
parent
ea44a229da
commit
4a0b49737c
751
pom.xml
751
pom.xml
|
@ -16,26 +16,74 @@
|
|||
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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-parent</artifactId>
|
||||
<version>48</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-math4</artifactId>
|
||||
<version>4.0-SNAPSHOT</version>
|
||||
<name>Apache Commons Math</name>
|
||||
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
<description>The Apache Commons 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/proper/commons-math/</url>
|
||||
<inceptionYear>2003</inceptionYear>
|
||||
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://issues.apache.org/jira/browse/MATH</url>
|
||||
</issueManagement>
|
||||
<properties>
|
||||
<!-- Do not change: "math" is the name of the component even if the
|
||||
name of the base package evolves with major release numbers
|
||||
(see "commons.osgi.symbolicName", below). -->
|
||||
<!-- TODO: when releasing 4.0, the properties below need to be updated, and
|
||||
the 3.x release artifacts need to be put int commons.release.3 -->
|
||||
<commons.componentid>math4</commons.componentid>
|
||||
<commons.module.name>org.apache.commons.math4</commons.module.name>
|
||||
<!-- This value must reflect the current name of the base package. -->
|
||||
<commons.osgi.symbolicName>org.apache.commons.math4</commons.osgi.symbolicName>
|
||||
<!-- do not use snapshot suffix here -->
|
||||
<commons.release.version>3.4.1</commons.release.version>
|
||||
<commons.release.desc>(requires Java 1.5+)</commons.release.desc>
|
||||
<!-- <commons.rc.version>RC1</commons.rc.version> -->
|
||||
<commons.binary.suffix>-bin</commons.binary.suffix>
|
||||
|
||||
<commons.release.2.version>2.2</commons.release.2.version>
|
||||
<!-- override parent name, because 2.2 uses different artifactId -->
|
||||
<commons.release.2.name>commons-math-${commons.release.2.version}</commons.release.2.name>
|
||||
<commons.release.2.desc>(requires Java 1.5+)</commons.release.2.desc>
|
||||
<commons.release.2.binary.suffix></commons.release.2.binary.suffix>
|
||||
|
||||
<commons.jira.id>MATH</commons.jira.id>
|
||||
<commons.jira.pid>12310485</commons.jira.pid>
|
||||
<commons.encoding>UTF-8</commons.encoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<math.pmd.version>3.8</math.pmd.version>
|
||||
<math.findbugs.version>3.0.4</math.findbugs.version>
|
||||
<math.checkstyle.version>2.17</math.checkstyle.version>
|
||||
<math.clirr.version>2.8</math.clirr.version>
|
||||
<math.mathjax.version>2.7.2</math.mathjax.version>
|
||||
|
||||
<commons.site.path>math</commons.site.path>
|
||||
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-math</commons.scmPubUrl>
|
||||
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
|
||||
|
||||
<!-- Temporary fix to replace svn-based build number with git-based build number -->
|
||||
<buildnumber.skip>true</buildnumber.skip>
|
||||
<math.jgit.buildnumber.version>1.2.11</math.jgit.buildnumber.version>
|
||||
<implementation.build>${git.revision}; ${maven.build.timestamp}</implementation.build>
|
||||
|
||||
<!-- Override default buildNumber timestamp format, needed for coveralls plugin -->
|
||||
<maven.buildNumber.timestampFormat>{0,date,yyyy-MM-dd HH:mm:ssZ}</maven.buildNumber.timestampFormat>
|
||||
|
||||
<!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. -->
|
||||
<jmh.version>1.13</jmh.version>
|
||||
<uberjar.name>benchmarks</uberjar.name>
|
||||
<!-- Java8+ requires additional Javadoc qualifier for MathJax (default to empty). -->
|
||||
<allowscript.javadoc.qualifier></allowscript.javadoc.qualifier>
|
||||
<!-- MathJax requires additional Javadoc qualifier for Java8+ -->
|
||||
<!-- default to empty for earlier versions of Java -->
|
||||
<doclint.javadoc.qualifier></doclint.javadoc.qualifier>
|
||||
</properties>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:http://gitbox.apache.org/repos/asf/commons-math.git</connection>
|
||||
|
@ -43,6 +91,11 @@
|
|||
<url>https://gitbox.apache.org/repos/asf?p=commons-math.git</url>
|
||||
</scm>
|
||||
|
||||
<issueManagement>
|
||||
<system>jira</system>
|
||||
<url>http://issues.apache.org/jira/browse/MATH</url>
|
||||
</issueManagement>
|
||||
|
||||
<distributionManagement>
|
||||
<site>
|
||||
<id>apache.website</id>
|
||||
|
@ -51,319 +104,6 @@
|
|||
</site>
|
||||
</distributionManagement>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Mikkel Meyer Andersen</name>
|
||||
<id>mikl</id>
|
||||
<email>mikl at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Bill Barker</name>
|
||||
<id>billbarker</id>
|
||||
<email>billbarker at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Sébastien Brisard</name>
|
||||
<id>celestin</id>
|
||||
<email>celestin at apache dot org</email>
|
||||
</developer>
|
||||
<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>Otmar Ertl</name>
|
||||
<id>oertl</id>
|
||||
<email>oertl at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Luc Maisonobe</name>
|
||||
<id>luc</id>
|
||||
<email>luc 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>Dimitri Pourbaix</name>
|
||||
<id>dimpbx</id>
|
||||
<email>dimpbx at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Gilles Sadowski</name>
|
||||
<id>erans</id>
|
||||
<email>erans at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Greg Sterijevski</name>
|
||||
<id>gregs</id>
|
||||
<email>gregs at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Brent Worden</name>
|
||||
<id>brentworden</id>
|
||||
<email>brentworden at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Evan Ward</name>
|
||||
<id>evanward</id>
|
||||
<email>evanward at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Rob Tompkins</name>
|
||||
<id>chtompki</id>
|
||||
<email>chtompki at apache dot org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Eldar Agalarov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tim Allison</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>C. Scott Ananian</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Anderson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Andrews</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rémi Arntzen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matt Adereth</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jared Becksfort</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Bjorkegren</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Bloniarz</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Bollinger</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Cyril Briquet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dave Brosius</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dan Checkoway</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Anders Conbere</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Charles Cooper</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paul Cowan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benjamin Croizet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Larry Diamond</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Aleksei Dievskii</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rodrigo di Lorenzo Lopes</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hasan Diwan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ted Dunning</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ole Ersoy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ajo Fod</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Gant</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ken Geis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hank Grabowski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bernhard Grünewaldt</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Elliotte Rusty Harold</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dennis Hendriks</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Reid Hochstedler</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthias Hummel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Curtis Jensen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bruce A Johnson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ismael Juma</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Eugene Kirpichov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Oleksandr Kornieiev</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Piotr Kochanski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergei Lebedev</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bob MacCallum</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jake Mannix</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benjamin McCann</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick Meyer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>J. Lewis Muir</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Venkatesha Murthy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thomas Neidhart</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Nix</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Fredrik Norin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sean Owen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sujit Pal</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Todd C. Parnell</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Qualtagh</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andreas Rieger</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sébastien Riou</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Karl Richter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benedikt Ritter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bill Rossi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthew Rowles</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Pavel Ryzhov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joni Salonen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Saunders</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thorsten Schaefer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Schuck</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christian Semrau</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Stefka</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mauro Talevi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Radoslav Tsvetkov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Kim van der Linde</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alexey Volkov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrew Waterman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jörg Weimar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christian Winter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Piotr Wydrych</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Xiaogang Zhang</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Popp</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
|
@ -459,61 +199,6 @@
|
|||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<properties>
|
||||
<!-- Do not change: "math" is the name of the component even if the
|
||||
name of the base package evolves with major release numbers
|
||||
(see "commons.osgi.symbolicName", below). -->
|
||||
<!-- TODO: when releasing 4.0, the properties below need to be updated, and
|
||||
the 3.x release artifacts need to be put int commons.release.3 -->
|
||||
<commons.componentid>math4</commons.componentid>
|
||||
<commons.module.name>org.apache.commons.math4</commons.module.name>
|
||||
<!-- This value must reflect the current name of the base package. -->
|
||||
<commons.osgi.symbolicName>org.apache.commons.math4</commons.osgi.symbolicName>
|
||||
<!-- do not use snapshot suffix here -->
|
||||
<commons.release.version>3.4.1</commons.release.version>
|
||||
<commons.release.desc>(requires Java 1.5+)</commons.release.desc>
|
||||
<!-- <commons.rc.version>RC1</commons.rc.version> -->
|
||||
<commons.binary.suffix>-bin</commons.binary.suffix>
|
||||
|
||||
<commons.release.2.version>2.2</commons.release.2.version>
|
||||
<!-- override parent name, because 2.2 uses different artifactId -->
|
||||
<commons.release.2.name>commons-math-${commons.release.2.version}</commons.release.2.name>
|
||||
<commons.release.2.desc>(requires Java 1.5+)</commons.release.2.desc>
|
||||
<commons.release.2.binary.suffix></commons.release.2.binary.suffix>
|
||||
|
||||
<commons.jira.id>MATH</commons.jira.id>
|
||||
<commons.jira.pid>12310485</commons.jira.pid>
|
||||
<commons.encoding>UTF-8</commons.encoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<math.pmd.version>3.8</math.pmd.version>
|
||||
<math.findbugs.version>3.0.4</math.findbugs.version>
|
||||
<math.checkstyle.version>2.17</math.checkstyle.version>
|
||||
<math.clirr.version>2.8</math.clirr.version>
|
||||
<math.mathjax.version>2.7.2</math.mathjax.version>
|
||||
|
||||
<commons.site.path>math</commons.site.path>
|
||||
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-math</commons.scmPubUrl>
|
||||
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
|
||||
|
||||
<!-- Temporary fix to replace svn-based build number with git-based build number -->
|
||||
<buildnumber.skip>true</buildnumber.skip>
|
||||
<math.jgit.buildnumber.version>1.2.11</math.jgit.buildnumber.version>
|
||||
<implementation.build>${git.revision}; ${maven.build.timestamp}</implementation.build>
|
||||
|
||||
<!-- Override default buildNumber timestamp format, needed for coveralls plugin -->
|
||||
<maven.buildNumber.timestampFormat>{0,date,yyyy-MM-dd HH:mm:ssZ}</maven.buildNumber.timestampFormat>
|
||||
|
||||
<!-- JMH Benchmark related properties, version, target compiler and name of the benchmarking uber jar. -->
|
||||
<jmh.version>1.13</jmh.version>
|
||||
<uberjar.name>benchmarks</uberjar.name>
|
||||
<!-- Java8+ requires additional Javadoc qualifier for MathJax (default to empty). -->
|
||||
<allowscript.javadoc.qualifier></allowscript.javadoc.qualifier>
|
||||
<!-- MathJax requires additional Javadoc qualifier for Java8+ -->
|
||||
<!-- default to empty for earlier versions of Java -->
|
||||
<doclint.javadoc.qualifier></doclint.javadoc.qualifier>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -1049,4 +734,318 @@
|
|||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Mikkel Meyer Andersen</name>
|
||||
<id>mikl</id>
|
||||
<email>mikl at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Bill Barker</name>
|
||||
<id>billbarker</id>
|
||||
<email>billbarker at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Sébastien Brisard</name>
|
||||
<id>celestin</id>
|
||||
<email>celestin at apache dot org</email>
|
||||
</developer>
|
||||
<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>Otmar Ertl</name>
|
||||
<id>oertl</id>
|
||||
<email>oertl at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Luc Maisonobe</name>
|
||||
<id>luc</id>
|
||||
<email>luc 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>Dimitri Pourbaix</name>
|
||||
<id>dimpbx</id>
|
||||
<email>dimpbx at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Gilles Sadowski</name>
|
||||
<id>erans</id>
|
||||
<email>erans at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Greg Sterijevski</name>
|
||||
<id>gregs</id>
|
||||
<email>gregs at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Brent Worden</name>
|
||||
<id>brentworden</id>
|
||||
<email>brentworden at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Evan Ward</name>
|
||||
<id>evanward</id>
|
||||
<email>evanward at apache dot org</email>
|
||||
</developer>
|
||||
<developer>
|
||||
<name>Rob Tompkins</name>
|
||||
<id>chtompki</id>
|
||||
<email>chtompki at apache dot org</email>
|
||||
</developer>
|
||||
</developers>
|
||||
<contributors>
|
||||
<contributor>
|
||||
<name>Eldar Agalarov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Tim Allison</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>C. Scott Ananian</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mark Anderson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Peter Andrews</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rémi Arntzen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matt Adereth</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jared Becksfort</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Bjorkegren</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Brian Bloniarz</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Bollinger</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Cyril Briquet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dave Brosius</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dan Checkoway</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Anders Conbere</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Charles Cooper</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Paul Cowan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benjamin Croizet</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Larry Diamond</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Aleksei Dievskii</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Rodrigo di Lorenzo Lopes</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hasan Diwan</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ted Dunning</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ole Ersoy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ajo Fod</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>John Gant</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ken Geis</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Hank Grabowski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bernhard Grünewaldt</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Elliotte Rusty Harold</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Dennis Hendriks</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Reid Hochstedler</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthias Hummel</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Curtis Jensen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bruce A Johnson</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Ismael Juma</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Eugene Kirpichov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Oleksandr Kornieiev</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Piotr Kochanski</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sergei Lebedev</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bob MacCallum</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jake Mannix</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benjamin McCann</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Patrick Meyer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>J. Lewis Muir</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Venkatesha Murthy</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thomas Neidhart</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Nix</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Fredrik Norin</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sean Owen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sujit Pal</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Todd C. Parnell</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Qualtagh</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andreas Rieger</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Sébastien Riou</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Karl Richter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Benedikt Ritter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Bill Rossi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Matthew Rowles</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Pavel Ryzhov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Joni Salonen</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Michael Saunders</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Thorsten Schaefer</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christopher Schuck</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christian Semrau</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>David Stefka</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Mauro Talevi</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Radoslav Tsvetkov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Kim van der Linde</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Alexey Volkov</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Andrew Waterman</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Jörg Weimar</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Christian Winter</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Piotr Wydrych</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Xiaogang Zhang</name>
|
||||
</contributor>
|
||||
<contributor>
|
||||
<name>Chris Popp</name>
|
||||
</contributor>
|
||||
</contributors>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue