blob: 7012cde38f917e91ab644e106c8a33936e2cc25f [file] [log] [blame]
vinayakb1f050c62010-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>
vinayakb391c9082010-08-14 05:57:38 +00003 <groupId>edu.uci.ics.hyracks.examples</groupId>
4 <artifactId>hyracks-integration-tests</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +00005 <version>0.2.0-SNAPSHOT</version>
vinayakb28cc83e2010-08-19 21:44:21 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-examples</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000010 <version>0.2.0-SNAPSHOT</version>
vinayakb28cc83e2010-08-19 21:44:21 +000011 </parent>
12
vinayakb1f050c62010-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>
vinayakb1f050c62010-08-14 05:43:59 +000024 </plugins>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>junit</groupId>
29 <artifactId>junit</artifactId>
30 <version>4.8.1</version>
31 <type>jar</type>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-dataflow-std</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000037 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000038 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-control-cc</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000044 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000045 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.hyracks</groupId>
50 <artifactId>hyracks-control-nc</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000051 <version>0.2.0-SNAPSHOT</version>
vinayakb1f050c62010-08-14 05:43:59 +000052 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
alexander.behmc0d2bbe2010-09-02 00:33:56 +000055 <dependency>
56 <groupId>edu.uci.ics.hyracks</groupId>
57 <artifactId>hyracks-storage-am-btree</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000058 <version>0.2.0-SNAPSHOT</version>
alexander.behmc0d2bbe2010-09-02 00:33:56 +000059 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
alexander.behm09c6e092010-11-18 08:27:23 +000062 <dependency>
63 <groupId>edu.uci.ics.hyracks</groupId>
64 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000065 <version>0.2.0-SNAPSHOT</version>
alexander.behm09c6e092010-11-18 08:27:23 +000066 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
vinayakb74c72072011-01-06 23:41:16 +000069 <dependency>
70 <groupId>edu.uci.ics.hyracks</groupId>
salsubaiee77632952011-07-12 22:04:50 +000071 <artifactId>hyracks-storage-am-rtree</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000072 <version>0.2.0-SNAPSHOT</version>
salsubaiee77632952011-07-12 22:04:50 +000073 <type>jar</type>
74 <scope>compile</scope>
75 </dependency>
76 <dependency>
77 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb74c72072011-01-06 23:41:16 +000078 <artifactId>hyracks-test-support</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000079 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +000080 <type>jar</type>
81 <scope>test</scope>
82 </dependency>
vinayakb1f050c62010-08-14 05:43:59 +000083 </dependencies>
84</project>