blob: 8c59cc4591d18f69117a2c81cc98084160a75dab [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">
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030020 <modelVersion>4.0.0</modelVersion>
21 <parent>
Ian Maxon3da9d062016-03-16 17:05:31 -070022 <artifactId>apache-asterixdb</artifactId>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030023 <groupId>org.apache.asterix</groupId>
Ian Maxon3da9d062016-03-16 17:05:31 -070024 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030025 </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>
Ian Maxon3da9d062016-03-16 17:05:31 -070035 <properties>
36 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
37 </properties>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030038 <build>
39 <plugins>
40 <plugin>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030041 <groupId>org.apache.asterix</groupId>
42 <artifactId>lexer-generator-maven-plugin</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -070043 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +030044 <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>
69 <configuration>
70 <sources>
71 <source>${project.build.directory}/generated-sources/</source>
72 </sources>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +030078 <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>
Ian Maxon3da9d062016-03-16 17:05:31 -070098 <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>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300137 </plugins>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300138 <pluginManagement>
139 <plugins>
140 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
141 <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>
150 <groupId> org.apache.asterix</groupId>
151 <artifactId> lexer-generator-maven-plugin</artifactId>
152 <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>
165 <groupId> org.codehaus.mojo</groupId>
166 <artifactId>build-helper-maven-plugin</artifactId>
167 <versionRange>[1.7,)</versionRange>
168 <goals>
169 <goal>add-source</goal>
170 </goals>
171 </pluginExecutionFilter>
172 <action>
173 <ignore />
174 </action>
175 </pluginExecution>
176 </pluginExecutions>
177 </lifecycleMappingMetadata>
178 </configuration>
179 </plugin>
180 </plugins>
181 </pluginManagement>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300182 </build>
183 <dependencies>
184 <dependency>
185 <groupId>javax.servlet</groupId>
186 <artifactId>servlet-api</artifactId>
187 <type>jar</type>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.asterix</groupId>
191 <artifactId>asterix-om</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700192 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300193 <type>jar</type>
194 <scope>compile</scope>
195 </dependency>
196 <dependency>
197 <groupId>org.apache.asterix</groupId>
198 <artifactId>asterix-runtime</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700199 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300200 <type>jar</type>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.hyracks</groupId>
205 <artifactId>algebricks-compiler</artifactId>
206 </dependency>
207 <dependency>
208 <groupId>com.kenai.nbpwr</groupId>
209 <artifactId>org-apache-commons-io</artifactId>
210 <version>1.3.1-201002241208</version>
211 <scope>test</scope>
212 </dependency>
213 <dependency>
214 <groupId>org.twitter4j</groupId>
215 <artifactId>twitter4j-core</artifactId>
Till Westmanncb9691a2016-04-01 22:32:42 -0700216 <version>4.0.3</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300217 </dependency>
218 <dependency>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700219 <groupId>org.twitter4j</groupId>
220 <artifactId>twitter4j-stream</artifactId>
Till Westmanncb9691a2016-04-01 22:32:42 -0700221 <version>4.0.3</version>
ramangrover29ae85a1d2015-06-26 17:26:05 -0700222 </dependency>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300223 <dependency>
224 <groupId>org.apache.hadoop</groupId>
225 <artifactId>hadoop-client</artifactId>
226 <type>jar</type>
227 <scope>compile</scope>
228 </dependency>
229 <dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300230 <groupId>org.apache.hadoop</groupId>
231 <artifactId>hadoop-hdfs</artifactId>
232 </dependency>
233 <dependency>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300234 <groupId>net.java.dev.rome</groupId>
235 <artifactId>rome-fetcher</artifactId>
236 <version>1.0.0</version>
237 <type>jar</type>
238 <scope>compile</scope>
239 <exclusions>
240 <exclusion>
241 <artifactId>rome</artifactId>
242 <groupId>net.java.dev.rome</groupId>
243 </exclusion>
244 </exclusions>
245 </dependency>
246 <dependency>
247 <groupId>rome</groupId>
248 <artifactId>rome</artifactId>
249 <version>1.0.1-modified-01</version>
250 </dependency>
251 <dependency>
252 <groupId>org.apache.hyracks</groupId>
253 <artifactId>hyracks-hdfs-core</artifactId>
254 <version>${hyracks.version}</version>
255 </dependency>
256 <dependency>
257 <groupId>jdom</groupId>
258 <artifactId>jdom</artifactId>
259 <version>1.0</version>
260 </dependency>
261 <dependency>
262 <groupId>org.apache.asterix</groupId>
263 <artifactId>asterix-common</artifactId>
Ian Maxon3da9d062016-03-16 17:05:31 -0700264 <version>0.8.9-SNAPSHOT</version>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300265 </dependency>
266 <dependency>
267 <groupId>com.microsoft.windowsazure</groupId>
268 <artifactId>microsoft-windowsazure-api</artifactId>
269 <version>0.4.4</version>
270 </dependency>
271 <dependency>
272 <groupId>org.apache.hive</groupId>
273 <artifactId>hive-exec</artifactId>
274 <version>0.13.0</version>
275 </dependency>
276 <dependency>
277 <groupId>javax.jdo</groupId>
278 <artifactId>jdo2-api</artifactId>
279 <version>2.3-20090302111651</version>
280 </dependency>
Abdullah Alamoudi284590e2016-01-03 15:42:18 +0300281 <dependency>
282 <groupId>com.e-movimento.tinytools</groupId>
283 <artifactId>privilegedaccessor</artifactId>
284 <version>1.2.2</version>
285 <scope>test</scope>
286 </dependency>
Abdullah Alamoudiee387c12016-01-30 02:33:44 +0300287 <dependency>
288 <groupId>com.couchbase.client</groupId>
289 <artifactId>core-io</artifactId>
290 <version>1.2.3</version>
291 </dependency>
292 <dependency>
293 <groupId>io.reactivex</groupId>
294 <artifactId>rxjava</artifactId>
295 <version>1.0.15</version>
296 </dependency>
Abdullah Alamoudi486e47a2015-12-23 08:17:57 +0300297 </dependencies>
Ian Maxon3da9d062016-03-16 17:05:31 -0700298</project>