blob: 31dddb73423550129920ccd1f50a0299000122cd [file] [log] [blame]
salsubaieec8f86a62012-02-16 05:50:46 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>edu.uci.ics.hyracks.examples</groupId>
5 <artifactId>hyracks-integration-tests</artifactId>
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <artifactId>hyracks-examples</artifactId>
9 <version>0.2.0-SNAPSHOT</version>
10 </parent>
vinayakb28cc83e2010-08-19 21:44:21 +000011
salsubaieec8f86a62012-02-16 05:50:46 +000012 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.6</source>
20 <target>1.6</target>
21 </configuration>
22 </plugin>
23 </plugins>
24 </build>
25 <dependencies>
26 <dependency>
27 <groupId>junit</groupId>
28 <artifactId>junit</artifactId>
29 <version>4.8.1</version>
30 <type>jar</type>
31 <scope>test</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-dataflow-std</artifactId>
36 <version>0.2.0-SNAPSHOT</version>
37 <type>jar</type>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-control-cc</artifactId>
43 <version>0.2.0-SNAPSHOT</version>
44 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 <dependency>
48 <groupId>edu.uci.ics.hyracks</groupId>
49 <artifactId>hyracks-control-nc</artifactId>
50 <version>0.2.0-SNAPSHOT</version>
51 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>edu.uci.ics.hyracks</groupId>
56 <artifactId>hyracks-storage-am-btree</artifactId>
57 <version>0.2.0-SNAPSHOT</version>
58 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>edu.uci.ics.hyracks</groupId>
63 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
64 <version>0.2.0-SNAPSHOT</version>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>edu.uci.ics.hyracks</groupId>
70 <artifactId>hyracks-storage-am-invertedindex</artifactId>
71 <version>0.2.0-SNAPSHOT</version>
72 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 <dependency>
76 <groupId>edu.uci.ics.hyracks</groupId>
77 <artifactId>hyracks-storage-am-rtree</artifactId>
78 <version>0.2.0-SNAPSHOT</version>
79 <type>jar</type>
80 <scope>compile</scope>
81 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
85 <version>0.2.0-SNAPSHOT</version>
86 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 <dependency>
90 <groupId>edu.uci.ics.hyracks</groupId>
91 <artifactId>hyracks-test-support</artifactId>
92 <version>0.2.0-SNAPSHOT</version>
93 <type>jar</type>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>edu.uci.ics.hyracks</groupId>
98 <artifactId>hyracks-data-std</artifactId>
99 <version>0.2.0-SNAPSHOT</version>
100 </dependency>
101 </dependencies>
vinayakb1f050c62010-08-14 05:43:59 +0000102</project>