blob: 8ad45ac1f026de9182356c2afe07e42cfe029589 [file] [log] [blame]
vinayakb5e5ec2a2010-08-30 05:29:10 +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-btree</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +00005 <version>0.2.0-SNAPSHOT</version>
vinayakb5e5ec2a2010-08-30 05:29:10 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000010 <version>0.2.0-SNAPSHOT</version>
vinayakb5e5ec2a2010-08-30 05:29:10 +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.behm0d161a02011-05-21 16:55:42 +000026 <dependencies>
vinayakb5e5ec2a2010-08-30 05:29:10 +000027 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
alexander.behm0d161a02011-05-21 16:55:42 +000029 <artifactId>hyracks-storage-common</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000030 <version>0.2.0-SNAPSHOT</version>
alexander.behm0d161a02011-05-21 16:55:42 +000031 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
alexander.behm940c8e12011-03-04 05:01:31 +000036 <artifactId>hyracks-storage-am-common</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000037 <version>0.2.0-SNAPSHOT</version>
vinayakb5e5ec2a2010-08-30 05:29:10 +000038 <type>jar</type>
39 <scope>compile</scope>
alexander.behmc3b788e2010-08-30 21:12:59 +000040 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-dataflow-common</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000044 <version>0.2.0-SNAPSHOT</version>
alexander.behmc3b788e2010-08-30 21:12:59 +000045 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
48 <dependency>
alexander.behmf4333362010-09-02 00:32:04 +000049 <groupId>edu.uci.ics.hyracks</groupId>
50 <artifactId>hyracks-dataflow-std</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000051 <version>0.2.0-SNAPSHOT</version>
alexander.behmf4333362010-09-02 00:32:04 +000052 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
alexander.behm6fe39432010-09-12 08:18:57 +000056 <groupId>edu.uci.ics.hyracks</groupId>
57 <artifactId>hyracks-control-nc</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000058 <version>0.2.0-SNAPSHOT</version>
alexander.behm6fe39432010-09-12 08:18:57 +000059 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
alexander.behmc3b788e2010-08-30 21:12:59 +000063 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <version>4.8.1</version>
66 <type>jar</type>
67 <scope>test</scope>
68 </dependency>
vinayakb5e5ec2a2010-08-30 05:29:10 +000069 </dependencies>
70</project>