blob: 9065680c71c8a688f40d0a6038201ec0389ddc60 [file] [log] [blame]
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -08001<!--
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 !-->
19<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">
20 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <groupId>org.apache.asterix.bad</groupId>
23 <artifactId>asterix-opt</artifactId>
24 <version>1.0.0-SNAPSHOT</version>
25 </parent>
26 <artifactId>asterix-bad</artifactId>
27 <properties>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -080028 <asterix.version>0.9.1-SNAPSHOT</asterix.version>
29 <hyracks.version>0.3.1-SNAPSHOT</hyracks.version>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -080030 </properties>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.asterix</groupId>
35 <artifactId>asterix-grammar-extension-maven-plugin</artifactId>
36 <version>${asterix.version}</version>
37 <configuration>
38 <base>${project.basedir}</base>
39 <gbase>../../asterix-lang-aql/src/main/javacc/AQL.jj</gbase>
40 <gextension>src/main/resources/lang-extension/lang.txt</gextension>
41 <output>target/generated-resources/javacc/grammar.jj</output>
42 <parserClassName>BADAQLParser</parserClassName>
43 <packageName>org.apache.asterix.bad.lang</packageName>
44 </configuration>
45 <executions>
46 <execution>
47 <phase>generate-sources</phase>
48 <goals>
49 <goal>grammarix</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>javacc-maven-plugin</artifactId>
57 <version>2.6</version>
58 <executions>
59 <execution>
60 <id>javacc</id>
61 <goals>
62 <goal>javacc</goal>
63 </goals>
64 <configuration>
65 <isStatic>false</isStatic>
66 <javaUnicodeEscape>true</javaUnicodeEscape>
67 <sourceDirectory>target/generated-resources/javacc</sourceDirectory>
68 </configuration>
69 </execution>
70 <execution>
71 <id>javacc-jjdoc</id>
72 <goals>
73 <goal>jjdoc</goal>
74 </goals>
75 <phase>process-sources</phase>
76 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.codehaus.mojo</groupId>
81 <artifactId>build-helper-maven-plugin</artifactId>
82 <version>1.9</version>
83 <executions>
84 <execution>
85 <id>add-source</id>
86 <phase>generate-sources</phase>
87 <goals>
88 <goal>add-source</goal>
89 </goals>
90 <configuration>
91 <sources>
92 <source>${project.build.directory}/generated-sources/javacc/</source>
93 </sources>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
98 </plugins>
99 <pluginManagement>
100 <plugins>
101 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
102 <plugin>
103 <groupId>org.eclipse.m2e</groupId>
104 <artifactId>lifecycle-mapping</artifactId>
105 <version>1.0.0</version>
106 <configuration>
107 <lifecycleMappingMetadata>
108 <pluginExecutions>
109 <pluginExecution>
110 <pluginExecutionFilter>
111 <groupId>org.apache.asterix</groupId>
112 <artifactId>asterix-grammar-extension-maven-plugin</artifactId>
113 <versionRange>[${asterix.version},)</versionRange>
114 <goals>
115 <goal>grammarix</goal>
116 </goals>
117 </pluginExecutionFilter>
118 <action>
119 <ignore></ignore>
120 </action>
121 </pluginExecution>
122 <pluginExecution>
123 <pluginExecutionFilter>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>javacc-maven-plugin</artifactId>
126 <versionRange>[2.6,)</versionRange>
127 <goals>
128 <goal>javacc</goal>
129 </goals>
130 </pluginExecutionFilter>
131 <action>
132 <ignore></ignore>
133 </action>
134 </pluginExecution>
135 </pluginExecutions>
136 </lifecycleMappingMetadata>
137 </configuration>
138 </plugin>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-dependency-plugin</artifactId>
142 <version>2.10</version>
143 <configuration>
144 <usedDependencies>
145 <usedDependency>org.apache.hadoop:hadoop-minicluster</usedDependency>
146 </usedDependencies>
147 </configuration>
148 </plugin>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800149 </plugins>
150 </pluginManagement>
151 </build>
152 <dependencies>
153 <dependency>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800154 <groupId>org.apache.hadoop</groupId>
155 <artifactId>hadoop-minicluster</artifactId>
156 <version>${hadoop.version}</version>
157 <type>jar</type>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800161 <groupId>org.apache.asterix</groupId>
162 <artifactId>asterix-om</artifactId>
163 <version>${asterix.version}</version>
164 <type>jar</type>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800168 <groupId>org.apache.asterix</groupId>
169 <artifactId>asterix-runtime</artifactId>
170 <version>${asterix.version}</version>
171 <type>jar</type>
172 <scope>compile</scope>
173 </dependency>
174 <dependency>
175 <groupId>org.apache.hyracks</groupId>
176 <artifactId>algebricks-compiler</artifactId>
177 </dependency>
178 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800179 <groupId>org.apache.asterix</groupId>
180 <artifactId>asterix-common</artifactId>
181 <version>${asterix.version}</version>
182 </dependency>
183 <dependency>
184 <groupId>org.apache.asterix</groupId>
185 <artifactId>asterix-test-framework</artifactId>
186 <version>${asterix.version}</version>
187 </dependency>
188 <dependency>
189 <groupId>org.apache.asterix</groupId>
190 <artifactId>asterix-active</artifactId>
191 <version>${asterix.version}</version>
192 </dependency>
193 <dependency>
194 <groupId>org.apache.asterix</groupId>
195 <artifactId>asterix-algebra</artifactId>
196 <version>${asterix.version}</version>
197 </dependency>
198 <dependency>
199 <groupId>org.apache.asterix</groupId>
200 <artifactId>asterix-app</artifactId>
201 <version>${asterix.version}</version>
202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>org.apache.asterix</groupId>
207 <artifactId>asterix-app</artifactId>
208 <version>${asterix.version}</version>
209 <type>test-jar</type>
210 <scope>test</scope>
211 </dependency>
212 <dependency>
213 <groupId>org.apache.asterix</groupId>
214 <artifactId>asterix-common</artifactId>
215 <version>${asterix.version}</version>
216 <type>test-jar</type>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800220 <groupId>org.apache.hyracks</groupId>
221 <artifactId>algebricks-common</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800222 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800223 </dependency>
224 <dependency>
225 <groupId>org.apache.hyracks</groupId>
226 <artifactId>hyracks-dataflow-common</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800227 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800228 </dependency>
229 <dependency>
230 <groupId>org.apache.asterix</groupId>
231 <artifactId>asterix-lang-aql</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800232 <version>${asterix.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800233 </dependency>
234 <dependency>
235 <groupId>log4j</groupId>
236 <artifactId>log4j</artifactId>
237 <version>1.2.17</version>
238 </dependency>
239 <dependency>
240 <groupId>org.apache.commons</groupId>
241 <artifactId>commons-lang3</artifactId>
242 <version>3.5</version>
243 </dependency>
244 <dependency>
245 <groupId>org.apache.hyracks</groupId>
246 <artifactId>algebricks-core</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800247 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800248 </dependency>
249 <dependency>
250 <groupId>org.apache.hyracks</groupId>
251 <artifactId>hyracks-dataflow-std</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800252 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800253 </dependency>
254 <dependency>
255 <groupId>junit</groupId>
256 <artifactId>junit</artifactId>
257 <version>4.12</version>
258 </dependency>
259 <dependency>
260 <groupId>org.apache.hyracks</groupId>
261 <artifactId>hyracks-data-std</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800262 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800263 </dependency>
264 <dependency>
265 <groupId>org.apache.hyracks</groupId>
266 <artifactId>algebricks-runtime</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800267 <version>${hyracks.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800268 </dependency>
269 <dependency>
270 <groupId>org.apache.asterix</groupId>
271 <artifactId>asterix-lang-common</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800272 <version>${asterix.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800273 </dependency>
274 <dependency>
275 <groupId>org.apache.asterix</groupId>
276 <artifactId>asterix-metadata</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800277 <version>${asterix.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800278 </dependency>
279 <dependency>
280 <groupId>org.apache.asterix</groupId>
281 <artifactId>asterix-external-data</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800282 <version>${asterix.version}</version>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800283 </dependency>
284 <dependency>
285 <groupId>org.apache.hyracks</groupId>
286 <artifactId>hyracks-api</artifactId>
Steven Glenn Jacobsc91fc342017-01-24 10:34:39 -0800287 <version>${hyracks.version}</version>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800288 </dependency>
289 </dependencies>
290</project>