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"> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>asterix</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
| 24 | <version>0.8.8-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 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 38 | <groupId>org.apache.asterix</groupId> |
| 39 | <artifactId>lexer-generator-maven-plugin</artifactId> |
| 40 | <version>0.8.8-SNAPSHOT</version> |
| 41 | <configuration> |
| 42 | <grammarFile>src/main/resources/adm.grammar</grammarFile> |
| 43 | <outputDir>${project.build.directory}/generated-sources/org/apache/asterix/runtime/operators/file/adm</outputDir> |
| 44 | </configuration> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <id>generate-lexer</id> |
| 48 | <phase>generate-sources</phase> |
| 49 | <goals> |
| 50 | <goal>generate-lexer</goal> |
| 51 | </goals> |
| 52 | </execution> |
| 53 | </executions> |
| 54 | </plugin> |
| 55 | <plugin> |
| 56 | <groupId>org.codehaus.mojo</groupId> |
| 57 | <artifactId>build-helper-maven-plugin</artifactId> |
| 58 | <version>1.9</version> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <id>add-source</id> |
| 62 | <phase>generate-sources</phase> |
| 63 | <goals> |
| 64 | <goal>add-source</goal> |
| 65 | </goals> |
| 66 | <configuration> |
| 67 | <sources> |
| 68 | <source>${project.build.directory}/generated-sources/</source> |
| 69 | </sources> |
| 70 | </configuration> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | </plugin> |
| 74 | <plugin> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 75 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 76 | <artifactId>maven-jaxb2-plugin</artifactId> |
| 77 | <version>0.9.0</version> |
| 78 | <executions> |
| 79 | <execution> |
| 80 | <id>configuration</id> |
| 81 | <goals> |
| 82 | <goal>generate</goal> |
| 83 | </goals> |
| 84 | <configuration> |
| 85 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 86 | <schemaIncludes> |
| 87 | <include>library.xsd</include> |
| 88 | </schemaIncludes> |
| 89 | <generatePackage>org.apache.asterix.external.library</generatePackage> |
| 90 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | </plugin> |
| 95 | <plugin> |
| 96 | <groupId>org.apache.maven.plugins</groupId> |
| 97 | <artifactId>maven-jar-plugin</artifactId> |
| 98 | <version>2.4</version> |
| 99 | <configuration> |
| 100 | <includes> |
| 101 | <include>**/*.class</include> |
| 102 | <include>**/*.txt</include> |
| 103 | </includes> |
| 104 | </configuration> |
| 105 | <executions> |
| 106 | <execution> |
| 107 | <goals> |
| 108 | <goal>test-jar</goal> |
| 109 | </goals> |
| 110 | <phase>package</phase> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <artifactId>maven-assembly-plugin</artifactId> |
| 116 | <version>2.2-beta-5</version> |
| 117 | <executions> |
| 118 | <execution> |
| 119 | <configuration> |
| 120 | <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor> |
| 121 | <finalName>testlib-zip</finalName> |
| 122 | </configuration> |
| 123 | <phase>package</phase> |
| 124 | <goals> |
| 125 | <goal>attached</goal> |
| 126 | </goals> |
| 127 | </execution> |
| 128 | </executions> |
| 129 | </plugin> |
| 130 | </plugins> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 131 | <pluginManagement> |
| 132 | <plugins> |
| 133 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
| 134 | <plugin> |
| 135 | <groupId>org.eclipse.m2e</groupId> |
| 136 | <artifactId>lifecycle-mapping</artifactId> |
| 137 | <version>1.0.0</version> |
| 138 | <configuration> |
| 139 | <lifecycleMappingMetadata> |
| 140 | <pluginExecutions> |
| 141 | <pluginExecution> |
| 142 | <pluginExecutionFilter> |
| 143 | <groupId> org.apache.asterix</groupId> |
| 144 | <artifactId> lexer-generator-maven-plugin</artifactId> |
| 145 | <versionRange>[0.1,)</versionRange> |
| 146 | <goals> |
| 147 | <goal>generate-lexer</goal> |
| 148 | </goals> |
| 149 | </pluginExecutionFilter> |
| 150 | <action> |
| 151 | <execute> |
| 152 | <runOnIncremental>false</runOnIncremental> |
| 153 | </execute> |
| 154 | </action> |
| 155 | </pluginExecution> |
| 156 | <pluginExecution> |
| 157 | <pluginExecutionFilter> |
| 158 | <groupId> org.codehaus.mojo</groupId> |
| 159 | <artifactId>build-helper-maven-plugin</artifactId> |
| 160 | <versionRange>[1.7,)</versionRange> |
| 161 | <goals> |
| 162 | <goal>add-source</goal> |
| 163 | </goals> |
| 164 | </pluginExecutionFilter> |
| 165 | <action> |
| 166 | <ignore /> |
| 167 | </action> |
| 168 | </pluginExecution> |
| 169 | </pluginExecutions> |
| 170 | </lifecycleMappingMetadata> |
| 171 | </configuration> |
| 172 | </plugin> |
| 173 | </plugins> |
| 174 | </pluginManagement> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 175 | </build> |
| 176 | <dependencies> |
| 177 | <dependency> |
| 178 | <groupId>javax.servlet</groupId> |
| 179 | <artifactId>servlet-api</artifactId> |
| 180 | <type>jar</type> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.apache.asterix</groupId> |
| 184 | <artifactId>asterix-om</artifactId> |
| 185 | <version>0.8.8-SNAPSHOT</version> |
| 186 | <type>jar</type> |
| 187 | <scope>compile</scope> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>org.apache.asterix</groupId> |
| 191 | <artifactId>asterix-runtime</artifactId> |
| 192 | <version>0.8.8-SNAPSHOT</version> |
| 193 | <type>jar</type> |
| 194 | <scope>compile</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.apache.hyracks</groupId> |
| 198 | <artifactId>algebricks-compiler</artifactId> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>com.kenai.nbpwr</groupId> |
| 202 | <artifactId>org-apache-commons-io</artifactId> |
| 203 | <version>1.3.1-201002241208</version> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
| 206 | <dependency> |
| 207 | <groupId>org.twitter4j</groupId> |
| 208 | <artifactId>twitter4j-core</artifactId> |
| 209 | <version>[4.0,)</version> |
| 210 | </dependency> |
| 211 | <dependency> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 212 | <groupId>org.twitter4j</groupId> |
| 213 | <artifactId>twitter4j-stream</artifactId> |
Heri Ramampiaro | d03d673 | 2015-10-16 08:52:18 +0200 | [diff] [blame] | 214 | <version>[4.0,)</version> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 215 | </dependency> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 216 | <dependency> |
| 217 | <groupId>org.apache.hadoop</groupId> |
| 218 | <artifactId>hadoop-client</artifactId> |
| 219 | <type>jar</type> |
| 220 | <scope>compile</scope> |
| 221 | </dependency> |
| 222 | <dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 223 | <groupId>org.apache.hadoop</groupId> |
| 224 | <artifactId>hadoop-hdfs</artifactId> |
| 225 | </dependency> |
| 226 | <dependency> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 227 | <groupId>net.java.dev.rome</groupId> |
| 228 | <artifactId>rome-fetcher</artifactId> |
| 229 | <version>1.0.0</version> |
| 230 | <type>jar</type> |
| 231 | <scope>compile</scope> |
| 232 | <exclusions> |
| 233 | <exclusion> |
| 234 | <artifactId>rome</artifactId> |
| 235 | <groupId>net.java.dev.rome</groupId> |
| 236 | </exclusion> |
| 237 | </exclusions> |
| 238 | </dependency> |
| 239 | <dependency> |
| 240 | <groupId>rome</groupId> |
| 241 | <artifactId>rome</artifactId> |
| 242 | <version>1.0.1-modified-01</version> |
| 243 | </dependency> |
| 244 | <dependency> |
| 245 | <groupId>org.apache.hyracks</groupId> |
| 246 | <artifactId>hyracks-hdfs-core</artifactId> |
| 247 | <version>${hyracks.version}</version> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>jdom</groupId> |
| 251 | <artifactId>jdom</artifactId> |
| 252 | <version>1.0</version> |
| 253 | </dependency> |
| 254 | <dependency> |
| 255 | <groupId>org.apache.asterix</groupId> |
| 256 | <artifactId>asterix-common</artifactId> |
| 257 | <version>0.8.8-SNAPSHOT</version> |
| 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>com.microsoft.windowsazure</groupId> |
| 261 | <artifactId>microsoft-windowsazure-api</artifactId> |
| 262 | <version>0.4.4</version> |
| 263 | </dependency> |
| 264 | <dependency> |
| 265 | <groupId>org.apache.hive</groupId> |
| 266 | <artifactId>hive-exec</artifactId> |
| 267 | <version>0.13.0</version> |
| 268 | </dependency> |
| 269 | <dependency> |
| 270 | <groupId>javax.jdo</groupId> |
| 271 | <artifactId>jdo2-api</artifactId> |
| 272 | <version>2.3-20090302111651</version> |
| 273 | </dependency> |
Abdullah Alamoudi | 284590e | 2016-01-03 15:42:18 +0300 | [diff] [blame] | 274 | <dependency> |
| 275 | <groupId>com.e-movimento.tinytools</groupId> |
| 276 | <artifactId>privilegedaccessor</artifactId> |
| 277 | <version>1.2.2</version> |
| 278 | <scope>test</scope> |
| 279 | </dependency> |
Abdullah Alamoudi | ee387c1 | 2016-01-30 02:33:44 +0300 | [diff] [blame] | 280 | <dependency> |
| 281 | <groupId>com.couchbase.client</groupId> |
| 282 | <artifactId>core-io</artifactId> |
| 283 | <version>1.2.3</version> |
| 284 | </dependency> |
| 285 | <dependency> |
| 286 | <groupId>io.reactivex</groupId> |
| 287 | <artifactId>rxjava</artifactId> |
| 288 | <version>1.0.15</version> |
| 289 | </dependency> |
Abdullah Alamoudi | 486e47a | 2015-12-23 08:17:57 +0300 | [diff] [blame] | 290 | </dependencies> |
| 291 | </project> |