blob: cad1b91d55cb1c004384e6d732d4b93cceb29a52 [file] [log] [blame]
vinayakbceb734e2010-08-14 05:43:59 +00001<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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
vinayakbdd0080e2010-08-14 05:57:38 +00003 <groupId>edu.uci.ics.hyracks.examples</groupId>
4 <artifactId>hyracks-integration-tests</artifactId>
vinayakbceb734e2010-08-14 05:43:59 +00005 <version>0.1.0</version>
6 <build>
7 <plugins>
8 <plugin>
9 <groupId>org.apache.maven.plugins</groupId>
10 <artifactId>maven-compiler-plugin</artifactId>
11 <version>2.0.2</version>
12 <configuration>
13 <source>1.6</source>
14 <target>1.6</target>
15 </configuration>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-surefire-plugin</artifactId>
20 <configuration>
21 <forkMode>pertest</forkMode>
22 <argLine>-enableassertions</argLine>
23 </configuration>
24 </plugin>
25 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>junit</groupId>
30 <artifactId>junit</artifactId>
31 <version>4.8.1</version>
32 <type>jar</type>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-dataflow-std</artifactId>
38 <version>0.1.0</version>
39 <type>jar</type>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
44 <artifactId>hyracks-control-cc</artifactId>
45 <version>0.1.0</version>
46 <type>jar</type>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.hyracks</groupId>
51 <artifactId>hyracks-control-nc</artifactId>
52 <version>0.1.0</version>
53 <type>jar</type>
54 <scope>compile</scope>
55 </dependency>
56 </dependencies>
57</project>