blob: 1535c943de8ff54e86ebdfc47c79a3876a55691d [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 !-->
ramangrover29ae85a1d2015-06-26 17:26:05 -070019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 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 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070024 <groupId>org.apache.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070025 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +000026 </parent>
vinayakb38b7ca42012-03-05 05:44:15 +000027 <artifactId>asterix-algebra</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +000028
ramangrover29ae85a1d2015-06-26 17:26:05 -070029 <licenses>
30 <license>
31 <name>Apache License, Version 2.0</name>
32 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33 <distribution>repo</distribution>
34 <comments>A business-friendly OSS license</comments>
35 </license>
36 </licenses>
Ian4a816dc2014-11-26 15:46:32 -080037
vinayakb38b7ca42012-03-05 05:44:15 +000038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-compiler-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070043 <version>2.3.2</version>
vinayakb38b7ca42012-03-05 05:44:15 +000044 <configuration>
vinayakb5ee049d2013-04-06 21:21:29 +000045 <source>1.7</source>
46 <target>1.7</target>
47 <fork>true</fork>
vinayakb38b7ca42012-03-05 05:44:15 +000048 </configuration>
49 </plugin>
50 <plugin>
51 <groupId>org.codehaus.mojo</groupId>
52 <artifactId>javacc-maven-plugin</artifactId>
53 <version>2.6</version>
54 <executions>
55 <execution>
56 <id>javacc</id>
57 <goals>
58 <goal>javacc</goal>
59 </goals>
60 <configuration>
61 <isStatic>false</isStatic>
62 </configuration>
63 </execution>
64 </executions>
65 </plugin>
66 </plugins>
vinayakb5ee049d2013-04-06 21:21:29 +000067 <pluginManagement>
68 <plugins>
ramangrover29ae85a1d2015-06-26 17:26:05 -070069 <!--This plugin's configuration is used to store Eclipse m2e settings
70 only. It has no influence on the Maven build itself. -->
vinayakb5ee049d2013-04-06 21:21:29 +000071 <plugin>
72 <groupId>org.eclipse.m2e</groupId>
73 <artifactId>lifecycle-mapping</artifactId>
74 <version>1.0.0</version>
75 <configuration>
76 <lifecycleMappingMetadata>
77 <pluginExecutions>
78 <pluginExecution>
79 <pluginExecutionFilter>
80 <groupId>
81 org.codehaus.mojo
82 </groupId>
83 <artifactId>
84 javacc-maven-plugin
85 </artifactId>
86 <versionRange>
87 [2.6,)
88 </versionRange>
89 <goals>
90 <goal>javacc</goal>
91 </goals>
92 </pluginExecutionFilter>
93 <action>
vinayakb8a1a7182013-04-07 01:45:00 +000094 <ignore />
vinayakb5ee049d2013-04-06 21:21:29 +000095 </action>
96 </pluginExecution>
97 </pluginExecutions>
98 </lifecycleMappingMetadata>
99 </configuration>
100 </plugin>
101 </plugins>
102 </pluginManagement>
vinayakb38b7ca42012-03-05 05:44:15 +0000103 </build>
104
105 <dependencies>
106 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700107 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000108 <artifactId>asterix-runtime</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700109 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000110 <scope>compile</scope>
111 </dependency>
112 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700113 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000114 <artifactId>asterix-aql</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700115 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000116 <scope>compile</scope>
117 </dependency>
118 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700119 <groupId>org.apache.asterix</groupId>
vinayakb38b7ca42012-03-05 05:44:15 +0000120 <artifactId>asterix-metadata</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700121 <version>0.8.7-SNAPSHOT</version>
vinayakb38b7ca42012-03-05 05:44:15 +0000122 <scope>compile</scope>
123 </dependency>
ramangrover29fef378d2013-06-21 18:29:21 -0700124 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700125 <groupId>org.apache.asterix</groupId>
ramangrover29fef378d2013-06-21 18:29:21 -0700126 <artifactId>asterix-external-data</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -0700127 <version>0.8.7-SNAPSHOT</version>
ramangrover29fef378d2013-06-21 18:29:21 -0700128 <scope>compile</scope>
129 </dependency>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700130 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700131 <groupId>org.apache.asterix</groupId>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700132 <artifactId>asterix-transactions</artifactId>
133 <version>0.8.7-SNAPSHOT</version>
134 <scope>compile</scope>
135 </dependency>
vinayakb38b7ca42012-03-05 05:44:15 +0000136 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -0700137 <groupId>org.apache.hyracks</groupId>
vinayakb5ee049d2013-04-06 21:21:29 +0000138 <artifactId>algebricks-compiler</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000139 </dependency>
140 <dependency>
141 <groupId>org.json</groupId>
142 <artifactId>json</artifactId>
vinayakb38b7ca42012-03-05 05:44:15 +0000143 </dependency>
144 </dependencies>
145</project>