blob: 77b81b4ab6ac758c557e201a33b4e0e343bbbc2f [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>
vinayakb391df4d2010-12-21 19:22:37 +00005 <version>0.1.3</version>
vinayakb0fbb5f22010-08-19 21:44:21 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-examples</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000010 <version>0.1.3</version>
vinayakb0fbb5f22010-08-19 21:44:21 +000011 </parent>
12
vinayakbceb734e2010-08-14 05:43:59 +000013 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 <configuration>
28 <forkMode>pertest</forkMode>
29 <argLine>-enableassertions</argLine>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 <dependencies>
35 <dependency>
36 <groupId>junit</groupId>
37 <artifactId>junit</artifactId>
38 <version>4.8.1</version>
39 <type>jar</type>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
44 <artifactId>hyracks-dataflow-std</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000045 <version>0.1.3</version>
vinayakbceb734e2010-08-14 05:43:59 +000046 <type>jar</type>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.hyracks</groupId>
51 <artifactId>hyracks-control-cc</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000052 <version>0.1.3</version>
vinayakbceb734e2010-08-14 05:43:59 +000053 <type>jar</type>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>edu.uci.ics.hyracks</groupId>
58 <artifactId>hyracks-control-nc</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000059 <version>0.1.3</version>
vinayakbceb734e2010-08-14 05:43:59 +000060 <type>jar</type>
61 <scope>compile</scope>
62 </dependency>
alexander.behm4ad96062010-09-02 00:33:56 +000063 <dependency>
64 <groupId>edu.uci.ics.hyracks</groupId>
65 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000066 <version>0.1.3</version>
alexander.behm4ad96062010-09-02 00:33:56 +000067 <type>jar</type>
68 <scope>compile</scope>
69 </dependency>
alexander.behmcbd6ca32010-11-18 08:27:23 +000070 <dependency>
71 <groupId>edu.uci.ics.hyracks</groupId>
72 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb391df4d2010-12-21 19:22:37 +000073 <version>0.1.3</version>
alexander.behmcbd6ca32010-11-18 08:27:23 +000074 <type>jar</type>
75 <scope>compile</scope>
76 </dependency>
vinayakbceb734e2010-08-14 05:43:59 +000077 </dependencies>
78</project>