blob: 166032f92de00790963249e369fa4953abb8f6ce [file] [log] [blame]
ramangrover2974915662013-06-06 15:12:21 -07001<!-- ! Copyright 2009-2013 by The Regents of the University of California
2 ! Licensed under the Apache License, Version 2.0 (the "License"); ! you may
3 not use this file except in compliance with the License. ! you may obtain
4 a copy of the License from ! ! http://www.apache.org/licenses/LICENSE-2.0
5 ! ! Unless required by applicable law or agreed to in writing, software !
6 distributed under the License is distributed on an "AS IS" BASIS, ! WITHOUT
7 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! See the
8 License for the specific language governing permissions and ! limitations
9 under the License. ! -->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080010<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/xsd/maven-4.0.0.xsd">
vinayakb38b7ca42012-03-05 05:44:15 +000011 <modelVersion>4.0.0</modelVersion>
12 <parent>
13 <artifactId>asterix</artifactId>
14 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070015 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000016 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000017 <artifactId>asterix-metadata</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000018
Ian4a816dc2014-11-26 15:46:32 -080019 <licenses>
20 <license>
21 <name>Apache License, Version 2.0</name>
22 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23 <distribution>repo</distribution>
24 <comments>A business-friendly OSS license</comments>
25 </license>
26 </licenses>
27
vinayakb38b7ca42012-03-05 05:44:15 +000028 <build>
29 <plugins>
30 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070033 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000034 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000035 <source>1.7</source>
36 <target>1.7</target>
37 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000038 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42
43 <dependencies>
44 <dependency>
45 <groupId>edu.uci.ics.asterix</groupId>
46 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070047 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000048 <scope>compile</scope>
49 </dependency>
50 <dependency>
51 <groupId>edu.uci.ics.asterix</groupId>
52 <artifactId>asterix-om</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070053 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000054 <scope>compile</scope>
55 </dependency>
56 <dependency>
57 <groupId>edu.uci.ics.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070058 <artifactId>asterix-runtime</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070059 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000060 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>edu.uci.ics.asterix</groupId>
ramangrover29db035f92013-06-06 18:30:10 -070064 <artifactId>asterix-events</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070065 <version>0.8.7-SNAPSHOT</version>
ramangrover29b2201c42013-05-30 15:40:24 -070066 <scope>compile</scope>
67 </dependency>
68 <dependency>
Ian18997ce2014-09-22 16:14:39 -070069 <groupId>org.apache.hadoop</groupId>
70 <artifactId>hadoop-client</artifactId>
71 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000075 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000076 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000077 </dependency>
78 <dependency>
79 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000080 <artifactId>hyracks-storage-am-lsm-btree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000081 </dependency>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000084 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000085 </dependency>
ramangrover29db035f92013-06-06 18:30:10 -070086 <dependency>
87 <groupId>edu.uci.ics.hyracks</groupId>
88 <artifactId>hyracks-hdfs-core</artifactId>
89 <version>${hyracks.version}</version>
90 </dependency>
91
vinayakb38b7ca42012-03-05 05:44:15 +000092 </dependencies>
93</project>