blob: c08c640071f47562e49374377de25ee9df2f6fbc [file] [log] [blame]
Ian Maxon928bbd12015-09-14 17:12:48 -07001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
Ian Maxond2e1e892015-10-05 12:46:26 -070019<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 +000020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000025 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000026 <artifactId>asterix-algebra</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000027
ramangrover29ae85a1d2015-06-26 17:26:05 -070028 <licenses>
29 <license>
30 <name>Apache License, Version 2.0</name>
31 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32 <distribution>repo</distribution>
33 <comments>A business-friendly OSS license</comments>
34 </license>
35 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080036
vinayakb38b7ca42012-03-05 05:44:15 +000037 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070042 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000043 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000044 <source>1.7</source>
45 <target>1.7</target>
46 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000047 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.codehaus.mojo</groupId>
51 <artifactId>javacc-maven-plugin</artifactId>
52 <version>2.6</version>
53 <executions>
54 <execution>
55 <id>javacc</id>
56 <goals>
57 <goal>javacc</goal>
58 </goals>
59 <configuration>
60 <isStatic>false</isStatic>
61 </configuration>
62 </execution>
63 </executions>
64 </plugin>
65 </plugins>
vinayakb5ee049d2013-04-06 21:21:29 +000066 <pluginManagement>
67 <plugins>
ramangrover29ae85a1d2015-06-26 17:26:05 -070068 <!--This plugin's configuration is used to store Eclipse m2e settings
69 only. It has no influence on the Maven build itself. -->
vinayakb5ee049d2013-04-06 21:21:29 +000070 <plugin>
71 <groupId>org.eclipse.m2e</groupId>
72 <artifactId>lifecycle-mapping</artifactId>
73 <version>1.0.0</version>
74 <configuration>
75 <lifecycleMappingMetadata>
76 <pluginExecutions>
77 <pluginExecution>
78 <pluginExecutionFilter>
79 <groupId>
80 org.codehaus.mojo
81 </groupId>
82 <artifactId>
83 javacc-maven-plugin
84 </artifactId>
85 <versionRange>
86 [2.6,)
87 </versionRange>
88 <goals>
89 <goal>javacc</goal>
90 </goals>
91 </pluginExecutionFilter>
92 <action>
vinayakb8a1a7182013-04-07 01:45:00 +000093 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +000094 </action>
95 </pluginExecution>
96 </pluginExecutions>
97 </lifecycleMappingMetadata>
98 </configuration>
99 </plugin>
100 </plugins>
101 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000102 </build>
103
104 <dependencies>
105 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700106 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000107 <artifactId>asterix-runtime</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700108 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000109 <scope>compile</scope>
110 </dependency>
111 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700112 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000113 <artifactId>asterix-aql</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700114 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000115 <scope>compile</scope>
116 </dependency>
117 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700118 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000119 <artifactId>asterix-metadata</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700120 <version>0.8.8-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000121 <scope>compile</scope>
122 </dependency>
ramangrover29fef378d2013-06-21 18:29:21 -0700123 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700124 <groupId>org.apache.asterix</groupId>
ramangrover29fef378d2013-06-21 18:29:21 -0700125 <artifactId>asterix-external-data</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700126 <version>0.8.8-SNAPSHOT</version>
ramangrover29fef378d2013-06-21 18:29:21 -0700127 <scope>compile</scope>
128 </dependency>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700129 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700130 <groupId>org.apache.asterix</groupId>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700131 <artifactId>asterix-transactions</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -0700132 <version>0.8.8-SNAPSHOT</version>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700133 <scope>compile</scope>
134 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000135 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700136 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000137 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000138 </dependency>
139 <dependency>
140 <groupId>org.json</groupId>
141 <artifactId>json</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000142 </dependency>
143 </dependencies>
144</project>