-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the pom.xml so that it works with ossrh release 1.0.0 and cha…
…nged the current version to 1.0.1, just in case.
- Loading branch information
msmith
committed
Apr 6, 2016
1 parent
98741ec
commit 8cbeb60
Showing
1 changed file
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,20 +5,45 @@ | |
|
||
<groupId>org.orangepalantir</groupId> | ||
<artifactId>leastsquares</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<version>1.0.1-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Least squares in java.</name> | ||
<url>https://github.com/odinsbane/least-squares-in-java</url> | ||
|
||
<description>A small library for using least squres fitting in java. Build using the JAMA | ||
matrix library</description> | ||
<licenses> | ||
<license> | ||
<name>The MIT License (MIT)</name> | ||
<url>https://opensource.org/licenses/MIT</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>odinsbane</id> | ||
<name>Matthew Smith</name> | ||
<email>[email protected]</email> | ||
<url>https://orangepalantir.org</url> | ||
<organization>UCL LMCB</organization> | ||
<organizationUrl>http://ucl.ac.uk/lmcb</organizationUrl> | ||
<roles> | ||
<role>lead</role> | ||
<role>developer</role> | ||
<role>debugger</role> | ||
<role>reviewer</role> | ||
<role>support</role> | ||
<role>maintainer</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:git://github.com/odinsbane/least-squares-in-java</connection> | ||
<developerConnection>scm:git:[email protected]/odinsbane/least-squares-in-java</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/odinsbane/least-squares-in-java</url> | ||
</scm> | ||
<dependencies> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
|