blob: 22946f670338867bc0a544d20d08dca2948788c2 [file] [log] [blame]
alexander.behm15c4e032012-08-09 20:29:29 +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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
5
6 <parent>
7 <artifactId>hyracks</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
zheilbrond974a5b2012-10-02 02:01:06 +00009 <version>0.2.2-SNAPSHOT</version>
alexander.behm15c4e032012-08-09 20:29:29 +000010 <relativePath>..</relativePath>
11 </parent>
12
13 <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>
24 </plugins>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-storage-am-btree</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +000030 <version>0.2.2-SNAPSHOT</version>
alexander.behm15c4e032012-08-09 20:29:29 +000031 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-storage-am-lsm-common</artifactId>
zheilbrond974a5b2012-10-02 02:01:06 +000037 <version>0.2.2-SNAPSHOT</version>
alexander.behm15c4e032012-08-09 20:29:29 +000038 <type>jar</type>
39 <scope>compile</scope>
alexander.behmf4404a82012-08-11 05:36:03 +000040 </dependency>
alexander.behm15c4e032012-08-09 20:29:29 +000041 </dependencies>
42</project>