blob: 25c7655ee6537c8ca33c987e2352a7815a53b8d1 [file] [log] [blame]
zheilbron5728a702013-03-04 18:43:03 +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.3-SNAPSHOT</version>
11 </parent>
vinayakb0c860392012-10-06 18:47:20 +000012
zheilbron5728a702013-03-04 18:43:03 +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.7</source>
21 <target>1.7</target>
22 </configuration>
23 </plugin>
24 </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>
37 <version>0.2.3-SNAPSHOT</version>
38 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-control-cc</artifactId>
44 <version>0.2.3-SNAPSHOT</version>
45 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
49 <groupId>edu.uci.ics.hyracks</groupId>
50 <artifactId>hyracks-control-nc</artifactId>
51 <version>0.2.3-SNAPSHOT</version>
52 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>edu.uci.ics.hyracks</groupId>
57 <artifactId>hyracks-storage-am-btree</artifactId>
58 <version>0.2.3-SNAPSHOT</version>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>edu.uci.ics.hyracks</groupId>
zheilbron5728a702013-03-04 18:43:03 +000064 <artifactId>hyracks-storage-am-rtree</artifactId>
65 <version>0.2.3-SNAPSHOT</version>
66 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
69 <dependency>
70 <groupId>edu.uci.ics.hyracks</groupId>
71 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
72 <version>0.2.3-SNAPSHOT</version>
73 <type>jar</type>
74 <scope>compile</scope>
75 </dependency>
76 <dependency>
77 <groupId>edu.uci.ics.hyracks</groupId>
78 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
79 <version>0.2.3-SNAPSHOT</version>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>edu.uci.ics.hyracks</groupId>
85 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
86 <version>0.2.3-SNAPSHOT</version>
87 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>edu.uci.ics.hyracks</groupId>
92 <artifactId>hyracks-test-support</artifactId>
93 <version>0.2.3-SNAPSHOT</version>
94 <type>jar</type>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>edu.uci.ics.hyracks</groupId>
99 <artifactId>hyracks-data-std</artifactId>
100 <version>0.2.3-SNAPSHOT</version>
101 </dependency>
102 </dependencies>
vinayakb0c860392012-10-06 18:47:20 +0000103</project>