blob: f56b164e7e36a575b130910c4904e2c93bcc4ef1 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +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>
3 <groupId>edu.uci.ics.hyracks</groupId>
4 <artifactId>hyracks-storage-am-invertedindex</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-storage-am-invertedindex</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks</artifactId>
11 <version>0.2.2-SNAPSHOT</version>
12 </parent>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </configuration>
24 </plugin>
25 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>edu.uci.ics.hyracks</groupId>
30 <artifactId>hyracks-storage-common</artifactId>
31 <version>0.2.2-SNAPSHOT</version>
32 <type>jar</type>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-dataflow-common</artifactId>
38 <version>0.2.2-SNAPSHOT</version>
39 <type>jar</type>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>edu.uci.ics.hyracks</groupId>
44 <artifactId>hyracks-dataflow-std</artifactId>
45 <version>0.2.2-SNAPSHOT</version>
46 <type>jar</type>
47 <scope>compile</scope>
48 </dependency>
49 <dependency>
50 <groupId>edu.uci.ics.hyracks</groupId>
51 <artifactId>hyracks-storage-am-btree</artifactId>
52 <version>0.2.2-SNAPSHOT</version>
53 <type>jar</type>
54 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <version>4.8.1</version>
60 <type>jar</type>
61 <scope>test</scope>
62 </dependency>
63 </dependencies>
64</project>