blob: f957b2c4c7ac9b03cec94803abb2f7ac1b2bf82a [file] [log] [blame]
alexander.behm14b46d02012-01-24 06:01:12 +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>
alexander.behm02e9fbd2012-01-25 19:02:05 +00004 <artifactId>hyracks-storage-am-lsm-btree-test</artifactId>
zheilbronf987cc52012-04-14 01:18:03 +00005 <version>0.2.1-SNAPSHOT</version>
alexander.behm14b46d02012-01-24 06:01:12 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-tests</artifactId>
zheilbronf987cc52012-04-14 01:18:03 +000010 <version>0.2.1-SNAPSHOT</version>
alexander.behm14b46d02012-01-24 06:01:12 +000011 </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>
alexander.behm1d0f9a62012-02-14 23:28:03 +000026 <dependencies>
alexander.behm14b46d02012-01-24 06:01:12 +000027 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
alexander.behm02e9fbd2012-01-25 19:02:05 +000029 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
zheilbronf987cc52012-04-14 01:18:03 +000030 <version>0.2.1-SNAPSHOT</version>
alexander.behm14b46d02012-01-24 06:01:12 +000031 <type>jar</type>
32 <scope>compile</scope>
alexander.behm58ecb022012-01-26 06:09:53 +000033 </dependency>
alexander.behm14b46d02012-01-24 06:01:12 +000034 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
zheilbronf987cc52012-04-14 01:18:03 +000036 <artifactId>hyracks-storage-am-common</artifactId>
37 <version>0.2.1-SNAPSHOT</version>
38 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
alexander.behm14b46d02012-01-24 06:01:12 +000042 <artifactId>hyracks-test-support</artifactId>
zheilbronf987cc52012-04-14 01:18:03 +000043 <version>0.2.1-SNAPSHOT</version>
44 <scope>compile</scope>
alexander.behm14b46d02012-01-24 06:01:12 +000045 </dependency>
46 </dependencies>
47</project>