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</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>
26 <system>GitHub</system>
27 <url>https://github.com/rwl/JKLU/issues/</url>
31 <system>Travis</system>
32 <url>http://travis-ci.org/rwl/JKLU</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>com.github.rwl</groupId>
63 <artifactId>BTFJ</artifactId>
64 <version>1.0.1</version>
67 <groupId>com.github.rwl</groupId>
68 <artifactId>AMDJ</artifactId>
69 <version>1.0.1</version>
72 <groupId>com.github.rwl</groupId>
73 <artifactId>COLAMDJ</artifactId>
74 <version>1.0.1</version>
78 <groupId>net.sourceforge.csparsej</groupId>
79 <artifactId>csparsej</artifactId>
80 <version>1.1.1</version>
84 <groupId>net.sourceforge.csparsej</groupId>
85 <artifactId>csparsej</artifactId>
86 <version>1.1.1</version>
92 <groupId>junit</groupId>
93 <artifactId>junit</artifactId>
94 <version>3.8.2</version>
102 <!-- required for static imports -->
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-compiler-plugin</artifactId>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-surefire-plugin</artifactId>
116 <include>**/test/Dklu_*.java</include>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-release-plugin</artifactId>
124 <version>2.3</version>
126 <!-- need this for gpg plugin to work correctly -->
127 <mavenExecutorId>forked-path</mavenExecutorId>
135 <id>release-sign-artifacts</id>
138 <name>performRelease</name>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-gpg-plugin</artifactId>
147 <version>1.4</version>
150 <id>sign-artifacts</id>
151 <phase>verify</phase>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-javadoc-plugin</artifactId>
168 <version>2.8.1</version>