Removing workspace.
[AMDJ.git] / pom.xml
blob221c900cd47bdd538fee6abffcbdf5050759a2d5
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>AMDJ</artifactId>
5   <version>2.2.2-SNAPSHOT</version>
7   <dependencies>
8         <dependency>
9                 <groupId>junit</groupId>
10                 <artifactId>junit</artifactId>
11                 <version>3.8.2</version>
12                 <scope>test</scope>
13         </dependency>
14   </dependencies>
16   <build>
17     <plugins>
19        <plugin>
20          <!-- required for static imports -->
21          <groupId>org.apache.maven.plugins</groupId>
22          <artifactId>maven-compiler-plugin</artifactId>
23          <configuration>
24            <source>1.5</source>
25            <target>1.5</target>
26          </configuration>
27       </plugin>
29       <plugin>
30         <groupId>org.apache.maven.plugins</groupId>
31         <artifactId>maven-surefire-plugin</artifactId>
32         <configuration>
33           <includes>
34             <include>**/test/Damd_*.java</include>
35           </includes>
36         </configuration>
37       </plugin>
39     </plugins>
40   </build>
42 </project>