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>JKLU</artifactId>
5 <version>1.0.0-SNAPSHOT</version>
7 <description>A sparse LU factorization algorithm suited to circuit simulation.</description>
8 <url>http://github.com/rwl/JKLU</url>
13 <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
14 <distribution>repo</distribution>
19 <url>git@github.com:rwl/JKLU.git</url>
20 <connection>scm:git:git@github.com:rwl/JKLU.git</connection>
21 <developerConnection>scm:git:git@github.com:rwl/JKLU.git</developerConnection>
25 <system>GitHub</system>
26 <url>https://github.com/rwl/JKLU/issues/</url>
30 <system>Travis</system>
31 <url>http://travis-ci.org/rwl/JKLU</url>
37 <name>Richard Lincoln</name>
38 <email>r.w.lincoln@gmail.com</email>
42 <distributionManagement>
44 <id>sonatype-nexus-staging</id>
45 <name>Sonatype OSS Staging Repository</name>
46 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
49 <id>sonatype-nexus-snapshots</id>
50 <name>Sonatype OSS Snapshot Repository</name>
51 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
53 </distributionManagement>
56 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
61 <groupId>com.github.rwl</groupId>
62 <artifactId>BTFJ</artifactId>
63 <version>1.0.1</version>
66 <groupId>com.github.rwl</groupId>
67 <artifactId>AMDJ</artifactId>
68 <version>1.0.1</version>
71 <groupId>com.github.rwl</groupId>
72 <artifactId>COLAMDJ</artifactId>
73 <version>1.0.1</version>
77 <groupId>net.sourceforge.csparsej</groupId>
78 <artifactId>csparsej</artifactId>
79 <version>1.1.1</version>
83 <groupId>net.sourceforge.csparsej</groupId>
84 <artifactId>csparsej</artifactId>
85 <version>1.1.1</version>
91 <groupId>junit</groupId>
92 <artifactId>junit</artifactId>
93 <version>3.8.2</version>
101 <!-- required for static imports -->
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-compiler-plugin</artifactId>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-surefire-plugin</artifactId>
115 <include>**/test/Dklu_*.java</include>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-release-plugin</artifactId>
123 <version>2.3</version>
125 <!-- need this for gpg plugin to work correctly -->
126 <mavenExecutorId>forked-path</mavenExecutorId>
134 <id>release-sign-artifacts</id>
137 <name>performRelease</name>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-gpg-plugin</artifactId>
146 <version>1.4</version>
149 <id>sign-artifacts</id>
150 <phase>verify</phase>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-javadoc-plugin</artifactId>
167 <version>2.8.1</version>