Fixing pointers in klu_kernel.
[JKLU.git] / pom.xml
blob5b816e680c780e82c388692e669ec9b1545a427e
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>edu.ufl.cise</groupId>
4   <artifactId>KLUJ</artifactId>
5   <version>1.1.1-SNAPSHOT</version>
7   <licenses>
8     <license>
9       <name>Gnu LGPL</name>
10       <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
11       <distribution>repo</distribution>
12     </license>
13   </licenses>
15   <dependencies>
16         <dependency>
17                 <groupId>edu.ufl.cise</groupId>
18                 <artifactId>BTFJ</artifactId>
19                 <version>1.1.2-SNAPSHOT</version>
20         </dependency>
21         <dependency>
22                 <groupId>edu.ufl.cise</groupId>
23                 <artifactId>AMDJ</artifactId>
24                 <version>2.2.2-SNAPSHOT</version>
25         </dependency>
26         <dependency>
27                 <groupId>edu.ufl.cise</groupId>
28                 <artifactId>COLAMDJ</artifactId>
29                 <version>2.7.3-SNAPSHOT</version>
30         </dependency>
32         <dependency>
33                 <groupId>junit</groupId>
34                 <artifactId>junit</artifactId>
35                 <version>3.8.2</version>
36                 <scope>test</scope>
37         </dependency>
38   </dependencies>
40   <build>
41     <plugins>
43        <plugin>
44          <!-- required for static imports -->
45          <groupId>org.apache.maven.plugins</groupId>
46          <artifactId>maven-compiler-plugin</artifactId>
47          <configuration>
48            <source>1.5</source>
49            <target>1.5</target>
50          </configuration>
51       </plugin>
53       <plugin>
54         <groupId>org.apache.maven.plugins</groupId>
55         <artifactId>maven-surefire-plugin</artifactId>
56         <configuration>
57           <includes>
58             <include>**/test/Dklu_*.java</include>
59           </includes>
60         </configuration>
61       </plugin>
63     </plugins>
64   </build>
66 </project>