Adding issue and CI management config.
[AMDJ.git] / pom.xml
blob8d21a4fd5c012c748c5e9f9d9ba1c2b748e8e63f
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>
6   <name>AMDJ</name>
7   <description>A set of routines for ordering a sparse matrix prior to Cholesky factorization.</description>
8   <url>http://github.com/rwl/AMDJ</url>
10   <licenses>
11     <license>
12       <name>Gnu LGPL</name>
13       <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
14       <distribution>repo</distribution>
15     </license>
16   </licenses>
18   <scm>
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>
22     <tag>HEAD</tag>
23   </scm>
25   <issueManagement>
26     <system>GitHub</system>
27     <url>https://github.com/rwl/AMDJ/issues/</url>
28   </issueManagement>
30   <ciManagement>
31     <system>Travis</system>
32     <url>http://travis-ci.org/rwl/AMDJ</url>
33   </ciManagement>
35   <developers>
36     <developer>
37       <id>rwl</id>
38       <name>Richard Lincoln</name>
39       <email>r.w.lincoln@gmail.com</email>
40     </developer>
41   </developers>
43   <distributionManagement>
44     <repository>
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>
48     </repository>
49     <snapshotRepository>
50       <id>sonatype-nexus-snapshots</id>
51       <name>Sonatype OSS Snapshot Repository</name>
52       <url>https://oss.sonatype.org/content/repositories/snapshots</url>
53     </snapshotRepository>
54   </distributionManagement>
56   <properties>
57     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58   </properties>
60   <dependencies>
61         <dependency>
62                 <groupId>junit</groupId>
63                 <artifactId>junit</artifactId>
64                 <version>3.8.2</version>
65                 <scope>test</scope>
66         </dependency>
67   </dependencies>
69   <build>
70     <plugins>
71        <plugin>
72          <!-- required for static imports -->
73          <groupId>org.apache.maven.plugins</groupId>
74          <artifactId>maven-compiler-plugin</artifactId>
75          <configuration>
76            <source>1.5</source>
77            <target>1.5</target>
78          </configuration>
79       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-surefire-plugin</artifactId>
84         <configuration>
85           <includes>
86             <include>**/test/Damd_*.java</include>
87           </includes>
88         </configuration>
89       </plugin>
91       <plugin>
92         <groupId>org.apache.maven.plugins</groupId>
93         <artifactId>maven-release-plugin</artifactId>
94         <version>2.3</version>
95         <configuration>
96           <!-- need this for gpg plugin to work correctly -->
97           <mavenExecutorId>forked-path</mavenExecutorId>
98         </configuration>
99       </plugin>
100     </plugins>
101   </build>
103   <profiles>
104     <profile>
105       <id>release-sign-artifacts</id>
106       <activation>
107         <property>
108           <name>performRelease</name>
109           <value>true</value>
110         </property>
111       </activation>
112       <build>
113         <plugins>
114           <plugin>
115             <groupId>org.apache.maven.plugins</groupId>
116             <artifactId>maven-gpg-plugin</artifactId>
117             <version>1.4</version>
118             <executions>
119               <execution>
120                 <id>sign-artifacts</id>
121                 <phase>verify</phase>
122                 <goals>
123                   <goal>sign</goal>
124                 </goals>
125               </execution>
126             </executions>
127           </plugin>
128         </plugins>
129       </build>
130     </profile>
131   </profiles>
133   <reporting>
134     <plugins>
135       <plugin>
136         <groupId>org.apache.maven.plugins</groupId>
137         <artifactId>maven-javadoc-plugin</artifactId>
138         <version>2.8.1</version>
139         <configuration>
140         </configuration>
141       </plugin>
142     </plugins>
143   </reporting>
145 </project>