1 <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/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>com.github.rwl</groupId>
4 <artifactId>AMDJ</artifactId>
5 <version>1.0.2-SNAPSHOT</version>
7 <description>A set of routines for ordering a sparse matrix prior to Cholesky factorization.</description>
8 <url>http://github.com/rwl/AMDJ</url>
13 <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
14 <distribution>repo</distribution>
19 <url>git@github.com:rwl/AMDJ.git</url>
20 <connection>scm:git:git@github.com:rwl/AMDJ.git</connection>
21 <developerConnection>scm:git:git@github.com:rwl/AMDJ.git</developerConnection>
26 <system>GitHub</system>
27 <url>https://github.com/rwl/AMDJ/issues/</url>
31 <system>Travis</system>
32 <url>http://travis-ci.org/rwl/AMDJ</url>
38 <name>Richard Lincoln</name>
39 <email>r.w.lincoln@gmail.com</email>
43 <distributionManagement>
45 <id>sonatype-nexus-staging</id>
46 <name>Sonatype OSS Staging Repository</name>
47 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
50 <id>sonatype-nexus-snapshots</id>
51 <name>Sonatype OSS Snapshot Repository</name>
52 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
54 </distributionManagement>
57 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>3.8.2</version>
72 <!-- required for static imports -->
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
86 <include>**/test/Damd_*.java</include>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-release-plugin</artifactId>
94 <version>2.3</version>
96 <!-- need this for gpg plugin to work correctly -->
97 <mavenExecutorId>forked-path</mavenExecutorId>
105 <id>release-sign-artifacts</id>
108 <name>performRelease</name>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-gpg-plugin</artifactId>
117 <version>1.4</version>
120 <id>sign-artifacts</id>
121 <phase>verify</phase>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-javadoc-plugin</artifactId>
138 <version>2.8.1</version>