blob: aeb77ef43708980324012349e2c05b97d68f915a [file] [log] [blame]
Till Westmannea8ab392013-06-05 15:17:08 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
vinayakb8a1a7182013-04-07 01:45:00 +000015<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 +000016 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
19 <groupId>edu.uci.ics.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000021 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000022 <artifactId>asterix-om</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000023
Ian4a816dc2014-11-26 15:46:32 -080024 <licenses>
25 <license>
26 <name>Apache License, Version 2.0</name>
27 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
28 <distribution>repo</distribution>
29 <comments>A business-friendly OSS license</comments>
30 </license>
31 </licenses>
32
vinayakb38b7ca42012-03-05 05:44:15 +000033 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000039 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000040 <source>1.7</source>
41 <target>1.7</target>
42 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000043 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47
48 <dependencies>
49 <dependency>
50 <groupId>edu.uci.ics.asterix</groupId>
51 <artifactId>asterix-common</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070052 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000053 <scope>compile</scope>
54 </dependency>
55 <dependency>
ramangrover29c22cf7b2013-05-26 13:12:34 -070056 <groupId>edu.uci.ics.asterix</groupId>
57 <artifactId>asterix-transactions</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070058 <version>0.8.7-SNAPSHOT</version>
ramangrover29c22cf7b2013-05-26 13:12:34 -070059 <scope>compile</scope>
60 </dependency>
61 <dependency>
vinayakb38b7ca42012-03-05 05:44:15 +000062 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000063 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000064 </dependency>
vinayakb5ee049d2013-04-06 21:21:29 +000065 <dependency>
66 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000068 </dependency>
69 <dependency>
70 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +000071 <artifactId>hyracks-storage-am-lsm-rtree</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000072 </dependency>
73 </dependencies>
74</project>