blob: c3cf3c471a8d7e76207a72171f94e355b1c30d71 [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 !-->
Vinayak Borkar9cca81b2013-12-11 21:53:45 -080019<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">
Michael Blowb4c1fb02016-05-09 15:41:00 -070020 <modelVersion>4.0.0</modelVersion>
21 <parent>
22 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
24 <version>0.8.9-SNAPSHOT</version>
25 </parent>
26 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
34 <artifactId>asterix-external-data</artifactId>
35 <properties>
36 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
37 </properties>
38 <build>
39 <plugins>
40 <plugin>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030041 <groupId>org.apache.asterix</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070042 <artifactId>lexer-generator-maven-plugin</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -040043 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <configuration>
45 <grammarFile>src/main/resources/adm.grammar</grammarFile>
46 <outputDir>${project.build.directory}/generated-sources/org/apache/asterix/runtime/operators/file/adm</outputDir>
47 </configuration>
48 <executions>
49 <execution>
50 <id>generate-lexer</id>
51 <phase>generate-sources</phase>
52 <goals>
53 <goal>generate-lexer</goal>
54 </goals>
55 </execution>
56 </executions>
57 </plugin>
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>build-helper-maven-plugin</artifactId>
61 <version>1.9</version>
62 <executions>
63 <execution>
64 <id>add-source</id>
65 <phase>generate-sources</phase>
66 <goals>
67 <goal>add-source</goal>
68 </goals>
Ian Maxon3da9d062016-03-16 17:05:31 -070069 <configuration>
Michael Blowb4c1fb02016-05-09 15:41:00 -070070 <sources>
71 <source>${project.build.directory}/generated-sources/</source>
72 </sources>
Ian Maxon3da9d062016-03-16 17:05:31 -070073 </configuration>
Michael Blowb4c1fb02016-05-09 15:41:00 -070074 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>org.jvnet.jaxb2.maven2</groupId>
79 <artifactId>maven-jaxb2-plugin</artifactId>
80 <version>0.9.0</version>
81 <executions>
82 <execution>
83 <id>configuration</id>
84 <goals>
85 <goal>generate</goal>
86 </goals>
87 <configuration>
88 <schemaDirectory>src/main/resources/schema</schemaDirectory>
89 <schemaIncludes>
90 <include>library.xsd</include>
91 </schemaIncludes>
92 <generatePackage>org.apache.asterix.external.library</generatePackage>
93 <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-jar-plugin</artifactId>
101 <version>2.4</version>
102 <configuration>
103 <includes>
104 <include>**/*.class</include>
105 <include>**/*.txt</include>
106 <include>**/DISCLAIMER</include>
107 <include>**/NOTICE</include>
108 <include>**/LICENSE</include>
109 <include>**/DEPENDENCIES</include>
110 </includes>
111 </configuration>
112 <executions>
113 <execution>
114 <goals>
115 <goal>test-jar</goal>
116 </goals>
117 <phase>package</phase>
118 </execution>
119 </executions>
120 </plugin>
121 <plugin>
122 <artifactId>maven-assembly-plugin</artifactId>
123 <version>2.2-beta-5</version>
124 <executions>
125 <execution>
126 <configuration>
127 <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor>
128 <finalName>testlib-zip</finalName>
129 </configuration>
130 <phase>package</phase>
131 <goals>
132 <goal>attached</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 <pluginManagement>
139 <plugins>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700140 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
Michael Blowb4c1fb02016-05-09 15:41:00 -0700141 <plugin>
142 <groupId>org.eclipse.m2e</groupId>
143 <artifactId>lifecycle-mapping</artifactId>
144 <version>1.0.0</version>
145 <configuration>
146 <lifecycleMappingMetadata>
147 <pluginExecutions>
148 <pluginExecution>
149 <pluginExecutionFilter>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700150 <groupId> org.apache.asterix</groupId>
151 <artifactId> lexer-generator-maven-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700152 <versionRange>[0.1,)</versionRange>
153 <goals>
154 <goal>generate-lexer</goal>
155 </goals>
156 </pluginExecutionFilter>
157 <action>
158 <execute>
159 <runOnIncremental>false</runOnIncremental>
160 </execute>
161 </action>
162 </pluginExecution>
163 <pluginExecution>
164 <pluginExecutionFilter>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700165 <groupId> org.codehaus.mojo</groupId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700166 <artifactId>build-helper-maven-plugin</artifactId>
167 <versionRange>[1.7,)</versionRange>
168 <goals>
169 <goal>add-source</goal>
170 </goals>
171 </pluginExecutionFilter>
172 <action>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700173 <ignore />
Michael Blowb4c1fb02016-05-09 15:41:00 -0700174 </action>
175 </pluginExecution>
176 </pluginExecutions>
177 </lifecycleMappingMetadata>
178 </configuration>
179 </plugin>
180 </plugins>
181 </pluginManagement>
182 </build>
183 <dependencies>
184 <dependency>
185 <groupId>javax.servlet</groupId>
Michael Blow29c1f1d2016-08-04 23:10:49 -0400186 <artifactId>javax.servlet-api</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700187 <type>jar</type>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.asterix</groupId>
191 <artifactId>asterix-om</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400192 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700193 <type>jar</type>
194 <scope>compile</scope>
195 </dependency>
196 <dependency>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700197 <groupId>org.apache.hyracks</groupId>
198 <artifactId>hyracks-test-support</artifactId>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700199 <scope>test</scope>
200 </dependency>
201 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700202 <groupId>org.apache.asterix</groupId>
203 <artifactId>asterix-runtime</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400204 <version>${project.version}</version>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700205 <type>jar</type>
206 <scope>compile</scope>
207 </dependency>
208 <dependency>
209 <groupId>org.apache.hyracks</groupId>
210 <artifactId>algebricks-compiler</artifactId>
211 </dependency>
212 <dependency>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300213 <groupId>org.apache.hyracks</groupId>
214 <artifactId>hyracks-hdfs-core</artifactId>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300215 </dependency>
216 <dependency>
217 <groupId>org.apache.asterix</groupId>
218 <artifactId>asterix-common</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400219 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300220 </dependency>
221 <dependency>
222 <groupId>org.apache.asterix</groupId>
223 <artifactId>asterix-active</artifactId>
Michael Blowf8a882d2016-08-02 01:28:34 -0400224 <version>${project.version}</version>
Abdullah Alamoudi973a0d32016-07-22 14:38:56 +0300225 </dependency>
226 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700227 <groupId>com.kenai.nbpwr</groupId>
228 <artifactId>org-apache-commons-io</artifactId>
229 <version>1.3.1-201002241208</version>
230 <scope>test</scope>
231 </dependency>
232 <dependency>
233 <groupId>org.twitter4j</groupId>
234 <artifactId>twitter4j-core</artifactId>
235 <version>4.0.3</version>
236 </dependency>
237 <dependency>
238 <groupId>org.twitter4j</groupId>
239 <artifactId>twitter4j-stream</artifactId>
240 <version>4.0.3</version>
241 </dependency>
242 <dependency>
243 <groupId>org.apache.hadoop</groupId>
244 <artifactId>hadoop-client</artifactId>
245 <type>jar</type>
246 <scope>compile</scope>
247 </dependency>
248 <dependency>
249 <groupId>org.apache.hadoop</groupId>
250 <artifactId>hadoop-hdfs</artifactId>
251 </dependency>
252 <dependency>
253 <groupId>net.java.dev.rome</groupId>
254 <artifactId>rome-fetcher</artifactId>
255 <version>1.0.0</version>
256 <type>jar</type>
257 <scope>compile</scope>
258 <exclusions>
259 <exclusion>
260 <artifactId>rome</artifactId>
261 <groupId>net.java.dev.rome</groupId>
262 </exclusion>
263 </exclusions>
264 </dependency>
265 <dependency>
266 <groupId>rome</groupId>
267 <artifactId>rome</artifactId>
268 <version>1.0.1-modified-01</version>
269 </dependency>
270 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700271 <groupId>jdom</groupId>
272 <artifactId>jdom</artifactId>
273 <version>1.0</version>
274 </dependency>
275 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700276 <groupId>com.microsoft.windowsazure</groupId>
277 <artifactId>microsoft-windowsazure-api</artifactId>
278 <version>0.4.4</version>
279 </dependency>
280 <dependency>
281 <groupId>org.apache.hive</groupId>
282 <artifactId>hive-exec</artifactId>
283 <version>0.13.0</version>
284 </dependency>
285 <dependency>
286 <groupId>javax.jdo</groupId>
287 <artifactId>jdo2-api</artifactId>
288 <version>2.3-20090302111651</version>
289 </dependency>
290 <dependency>
291 <groupId>com.e-movimento.tinytools</groupId>
292 <artifactId>privilegedaccessor</artifactId>
293 <version>1.2.2</version>
294 <scope>test</scope>
295 </dependency>
296 <dependency>
297 <groupId>com.couchbase.client</groupId>
298 <artifactId>core-io</artifactId>
Abdullah Alamoudi9747c4b2016-08-26 10:45:09 +0300299 <version>1.3.2</version>
Abdullah Alamoudifba622b2016-05-14 13:01:16 -0700300 </dependency>
301 <dependency>
302 <groupId>org.mockito</groupId>
303 <artifactId>mockito-all</artifactId>
304 <version>2.0.2-beta</version>
305 <scope>test</scope>
306 </dependency>
Michael Blow2da62dc2016-06-30 21:18:37 -0400307 <dependency>
308 <groupId>org.apache.hyracks</groupId>
309 <artifactId>hyracks-api</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -0400310 <type>test-jar</type>
311 <scope>test</scope>
312 </dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -0700313 </dependencies>
Michael Blowf8a882d2016-08-02 01:28:34 -0400314</project>