Passing first tdouble tests.
[JKLU.git] / pom.xml
blob2ea1ff7155c27d0723feacc3d993d85497153815
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         <dependency>
39                 <groupId>net.sourceforge.csparsej</groupId>
40                 <artifactId>csparsej</artifactId>
41                 <version>1.1.1-SNAPSHOT</version>
42                 <scope>test</scope>
43         </dependency>
44         <dependency>
45                 <groupId>net.sourceforge.csparsej</groupId>
46                 <artifactId>csparsej</artifactId>
47                 <version>1.1.1-SNAPSHOT</version>
48                 <type>test-jar</type>
49                 <scope>test</scope>
50         </dependency>
51   </dependencies>
53   <build>
54     <plugins>
56        <plugin>
57          <!-- required for static imports -->
58          <groupId>org.apache.maven.plugins</groupId>
59          <artifactId>maven-compiler-plugin</artifactId>
60          <configuration>
61            <source>1.5</source>
62            <target>1.5</target>
63          </configuration>
64       </plugin>
66       <plugin>
67         <groupId>org.apache.maven.plugins</groupId>
68         <artifactId>maven-surefire-plugin</artifactId>
69         <configuration>
70           <includes>
71             <include>**/test/Dklu_*.java</include>
72           </includes>
73         </configuration>
74       </plugin>
76     </plugins>
77   </build>
79 </project>