Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 1 | <!-- |
| 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 Borkar | 9cca81b | 2013-12-11 21:53:45 -0800 | [diff] [blame] | 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"> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 20 | <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 Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 41 | <groupId>org.apache.asterix</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 42 | <artifactId>lexer-generator-maven-plugin</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 43 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 44 | <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 Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 69 | <configuration> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 70 | <sources> |
| 71 | <source>${project.build.directory}/generated-sources/</source> |
| 72 | </sources> |
Ian Maxon | 3da9d06 | 2016-03-16 17:05:31 -0700 | [diff] [blame] | 73 | </configuration> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 74 | </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 Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 140 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 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> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 150 | <groupId> org.apache.asterix</groupId> |
| 151 | <artifactId> lexer-generator-maven-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 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> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 165 | <groupId> org.codehaus.mojo</groupId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 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> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 173 | <ignore /> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 174 | </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 Blow | 29c1f1d | 2016-08-04 23:10:49 -0400 | [diff] [blame] | 186 | <artifactId>javax.servlet-api</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 187 | <type>jar</type> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>org.apache.asterix</groupId> |
| 191 | <artifactId>asterix-om</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 192 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 193 | <type>jar</type> |
| 194 | <scope>compile</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 197 | <groupId>org.apache.hyracks</groupId> |
| 198 | <artifactId>hyracks-test-support</artifactId> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 199 | <scope>test</scope> |
| 200 | </dependency> |
| 201 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 202 | <groupId>org.apache.asterix</groupId> |
| 203 | <artifactId>asterix-runtime</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 204 | <version>${project.version}</version> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 205 | <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 Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 213 | <groupId>org.apache.hyracks</groupId> |
| 214 | <artifactId>hyracks-hdfs-core</artifactId> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>org.apache.asterix</groupId> |
| 218 | <artifactId>asterix-common</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 219 | <version>${project.version}</version> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.apache.asterix</groupId> |
| 223 | <artifactId>asterix-active</artifactId> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 224 | <version>${project.version}</version> |
Abdullah Alamoudi | 973a0d3 | 2016-07-22 14:38:56 +0300 | [diff] [blame] | 225 | </dependency> |
| 226 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 227 | <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 Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 271 | <groupId>jdom</groupId> |
| 272 | <artifactId>jdom</artifactId> |
| 273 | <version>1.0</version> |
| 274 | </dependency> |
| 275 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 276 | <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 Alamoudi | 9747c4b | 2016-08-26 10:45:09 +0300 | [diff] [blame^] | 299 | <version>1.3.2</version> |
Abdullah Alamoudi | fba622b | 2016-05-14 13:01:16 -0700 | [diff] [blame] | 300 | </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 Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 307 | <dependency> |
| 308 | <groupId>org.apache.hyracks</groupId> |
| 309 | <artifactId>hyracks-api</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 310 | <type>test-jar</type> |
| 311 | <scope>test</scope> |
| 312 | </dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 313 | </dependencies> |
Michael Blow | f8a882d | 2016-08-02 01:28:34 -0400 | [diff] [blame] | 314 | </project> |