blob: a8b6d6727e62f5816a0b1aa8bed769c7afaca7b3 [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>
28 <asterix.version>0.8.9-SNAPSHOT</asterix.version>
29 </properties>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.asterix</groupId>
34 <artifactId>asterix-grammar-extension-maven-plugin</artifactId>
35 <version>${asterix.version}</version>
36 <configuration>
37 <base>${project.basedir}</base>
38 <gbase>../../asterix-lang-aql/src/main/javacc/AQL.jj</gbase>
39 <gextension>src/main/resources/lang-extension/lang.txt</gextension>
40 <output>target/generated-resources/javacc/grammar.jj</output>
41 <parserClassName>BADAQLParser</parserClassName>
42 <packageName>org.apache.asterix.bad.lang</packageName>
43 </configuration>
44 <executions>
45 <execution>
46 <phase>generate-sources</phase>
47 <goals>
48 <goal>grammarix</goal>
49 </goals>
50 </execution>
51 </executions>
52 </plugin>
53 <plugin>
54 <groupId>org.codehaus.mojo</groupId>
55 <artifactId>javacc-maven-plugin</artifactId>
56 <version>2.6</version>
57 <executions>
58 <execution>
59 <id>javacc</id>
60 <goals>
61 <goal>javacc</goal>
62 </goals>
63 <configuration>
64 <isStatic>false</isStatic>
65 <javaUnicodeEscape>true</javaUnicodeEscape>
66 <sourceDirectory>target/generated-resources/javacc</sourceDirectory>
67 </configuration>
68 </execution>
69 <execution>
70 <id>javacc-jjdoc</id>
71 <goals>
72 <goal>jjdoc</goal>
73 </goals>
74 <phase>process-sources</phase>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
79 <groupId>org.codehaus.mojo</groupId>
80 <artifactId>build-helper-maven-plugin</artifactId>
81 <version>1.9</version>
82 <executions>
83 <execution>
84 <id>add-source</id>
85 <phase>generate-sources</phase>
86 <goals>
87 <goal>add-source</goal>
88 </goals>
89 <configuration>
90 <sources>
91 <source>${project.build.directory}/generated-sources/javacc/</source>
92 </sources>
93 </configuration>
94 </execution>
95 </executions>
96 </plugin>
97 </plugins>
98 <pluginManagement>
99 <plugins>
100 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
101 <plugin>
102 <groupId>org.eclipse.m2e</groupId>
103 <artifactId>lifecycle-mapping</artifactId>
104 <version>1.0.0</version>
105 <configuration>
106 <lifecycleMappingMetadata>
107 <pluginExecutions>
108 <pluginExecution>
109 <pluginExecutionFilter>
110 <groupId>org.apache.asterix</groupId>
111 <artifactId>asterix-grammar-extension-maven-plugin</artifactId>
112 <versionRange>[${asterix.version},)</versionRange>
113 <goals>
114 <goal>grammarix</goal>
115 </goals>
116 </pluginExecutionFilter>
117 <action>
118 <ignore></ignore>
119 </action>
120 </pluginExecution>
121 <pluginExecution>
122 <pluginExecutionFilter>
123 <groupId>org.codehaus.mojo</groupId>
124 <artifactId>javacc-maven-plugin</artifactId>
125 <versionRange>[2.6,)</versionRange>
126 <goals>
127 <goal>javacc</goal>
128 </goals>
129 </pluginExecutionFilter>
130 <action>
131 <ignore></ignore>
132 </action>
133 </pluginExecution>
134 </pluginExecutions>
135 </lifecycleMappingMetadata>
136 </configuration>
137 </plugin>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-dependency-plugin</artifactId>
141 <version>2.10</version>
142 <configuration>
143 <usedDependencies>
144 <usedDependency>org.apache.hadoop:hadoop-minicluster</usedDependency>
145 </usedDependencies>
146 </configuration>
147 </plugin>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800148 </plugins>
149 </pluginManagement>
150 </build>
151 <dependencies>
152 <dependency>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800153 <groupId>org.apache.hadoop</groupId>
154 <artifactId>hadoop-minicluster</artifactId>
155 <version>${hadoop.version}</version>
156 <type>jar</type>
157 <scope>test</scope>
158 </dependency>
159 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800160 <groupId>org.apache.asterix</groupId>
161 <artifactId>asterix-om</artifactId>
162 <version>${asterix.version}</version>
163 <type>jar</type>
164 <scope>compile</scope>
165 </dependency>
166 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800167 <groupId>org.apache.asterix</groupId>
168 <artifactId>asterix-runtime</artifactId>
169 <version>${asterix.version}</version>
170 <type>jar</type>
171 <scope>compile</scope>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.hyracks</groupId>
175 <artifactId>algebricks-compiler</artifactId>
176 </dependency>
177 <dependency>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800178 <groupId>org.apache.asterix</groupId>
179 <artifactId>asterix-common</artifactId>
180 <version>${asterix.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.apache.asterix</groupId>
184 <artifactId>asterix-test-framework</artifactId>
185 <version>${asterix.version}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.apache.asterix</groupId>
189 <artifactId>asterix-active</artifactId>
190 <version>${asterix.version}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.apache.asterix</groupId>
194 <artifactId>asterix-algebra</artifactId>
195 <version>${asterix.version}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.apache.asterix</groupId>
199 <artifactId>asterix-app</artifactId>
200 <version>${asterix.version}</version>
201 <type>jar</type>
202 <scope>compile</scope>
203 </dependency>
204 <dependency>
205 <groupId>org.apache.asterix</groupId>
206 <artifactId>asterix-app</artifactId>
207 <version>${asterix.version}</version>
208 <type>test-jar</type>
209 <scope>test</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.apache.asterix</groupId>
213 <artifactId>asterix-common</artifactId>
214 <version>${asterix.version}</version>
215 <type>test-jar</type>
216 <scope>test</scope>
217 </dependency>
218 <dependency>
Steven Glenn Jacobs088e8ee2017-01-12 19:24:46 -0800219 <groupId>org.apache.hyracks</groupId>
220 <artifactId>algebricks-common</artifactId>
221 <version>0.2.18-SNAPSHOT</version>
222 </dependency>
223 <dependency>
224 <groupId>org.apache.hyracks</groupId>
225 <artifactId>hyracks-dataflow-common</artifactId>
226 <version>0.2.18-SNAPSHOT</version>
227 </dependency>
228 <dependency>
229 <groupId>org.apache.asterix</groupId>
230 <artifactId>asterix-lang-aql</artifactId>
231 <version>0.8.9-SNAPSHOT</version>
232 </dependency>
233 <dependency>
234 <groupId>log4j</groupId>
235 <artifactId>log4j</artifactId>
236 <version>1.2.17</version>
237 </dependency>
238 <dependency>
239 <groupId>org.apache.commons</groupId>
240 <artifactId>commons-lang3</artifactId>
241 <version>3.5</version>
242 </dependency>
243 <dependency>
244 <groupId>org.apache.hyracks</groupId>
245 <artifactId>algebricks-core</artifactId>
246 <version>0.2.18-SNAPSHOT</version>
247 </dependency>
248 <dependency>
249 <groupId>org.apache.hyracks</groupId>
250 <artifactId>hyracks-dataflow-std</artifactId>
251 <version>0.2.18-SNAPSHOT</version>
252 </dependency>
253 <dependency>
254 <groupId>junit</groupId>
255 <artifactId>junit</artifactId>
256 <version>4.12</version>
257 </dependency>
258 <dependency>
259 <groupId>org.apache.hyracks</groupId>
260 <artifactId>hyracks-data-std</artifactId>
261 <version>0.2.18-SNAPSHOT</version>
262 </dependency>
263 <dependency>
264 <groupId>org.apache.hyracks</groupId>
265 <artifactId>algebricks-runtime</artifactId>
266 <version>0.2.18-SNAPSHOT</version>
267 </dependency>
268 <dependency>
269 <groupId>org.apache.asterix</groupId>
270 <artifactId>asterix-lang-common</artifactId>
271 <version>0.8.9-SNAPSHOT</version>
272 </dependency>
273 <dependency>
274 <groupId>org.apache.asterix</groupId>
275 <artifactId>asterix-metadata</artifactId>
276 <version>0.8.9-SNAPSHOT</version>
277 </dependency>
278 <dependency>
279 <groupId>org.apache.asterix</groupId>
280 <artifactId>asterix-external-data</artifactId>
281 <version>0.8.9-SNAPSHOT</version>
282 </dependency>
283 <dependency>
284 <groupId>org.apache.hyracks</groupId>
285 <artifactId>hyracks-api</artifactId>
286 <version>0.2.18-SNAPSHOT</version>
Steven Glenn Jacobsd0ec8372016-12-07 11:00:08 -0800287 </dependency>
288 </dependencies>
289</project>