blob: 432877b59219daa056da162c2057a0ffd3eaf681 [file] [log] [blame]
vinayakb4df31102013-04-06 18:28:48 +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 <name>hyracks-integration-tests</name>
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-examples</artifactId>
10 <version>0.2.4-SNAPSHOT</version>
11 </parent>
12 <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.7</source>
20 <target>1.7</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.4-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.4-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.4-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.4-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-rtree</artifactId>
64 <version>0.2.4-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-lsm-btree</artifactId>
71 <version>0.2.4-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-lsm-rtree</artifactId>
78 <version>0.2.4-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-invertedindex</artifactId>
85 <version>0.2.4-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.4-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.4-SNAPSHOT</version>
100 </dependency>
101 <dependency>
102 <groupId>edu.uci.ics.hyracks</groupId>
103 <artifactId>hyracks-client</artifactId>
104 <version>0.2.4-SNAPSHOT</version>
105 <type>jar</type>
106 <scope>compile</scope>
107 </dependency>
108 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000109</project>