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>COLAMDJ</artifactId>
5 <version>1.0.1</version>
7 <description>Column approximate minimum degree ordering algorithm.</description>
8 <url>http://github.com/rwl/COLAMDJ</url>
13 <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
14 <distribution>repo</distribution>
19 <url>git@github.com:rwl/COLAMDJ.git</url>
20 <connection>scm:git:git@github.com:rwl/COLAMDJ.git</connection>
21 <developerConnection>scm:git:git@github.com:rwl/COLAMDJ.git</developerConnection>
22 <tag>COLAMDJ-1.0.1</tag>
28 <name>Richard Lincoln</name>
29 <email>r.w.lincoln@gmail.com</email>
33 <distributionManagement>
35 <id>sonatype-nexus-staging</id>
36 <name>Sonatype OSS Staging Repository</name>
37 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
40 <id>sonatype-nexus-snapshots</id>
41 <name>Sonatype OSS Snapshot Repository</name>
42 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
44 </distributionManagement>
47 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <version>3.8.2</version>
62 <!-- required for static imports -->
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-compiler-plugin</artifactId>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-surefire-plugin</artifactId>
76 <include>**/test/Dcolamd_*.java</include>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-release-plugin</artifactId>
84 <version>2.3</version>
86 <!-- need this for gpg plugin to work correctly -->
87 <mavenExecutorId>forked-path</mavenExecutorId>
95 <id>release-sign-artifacts</id>
98 <name>performRelease</name>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-gpg-plugin</artifactId>
107 <version>1.4</version>
110 <id>sign-artifacts</id>
111 <phase>verify</phase>