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"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | <parent> |
| 22 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 24 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 25 | </parent> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | |
| 27 | <licenses> |
| 28 | <license> |
| 29 | <name>Apache License, Version 2.0</name> |
| 30 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 31 | <distribution>repo</distribution> |
| 32 | <comments>A business-friendly OSS license</comments> |
| 33 | </license> |
| 34 | </licenses> |
| 35 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 36 | <artifactId>asterix-external-data</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 37 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame^] | 38 | <properties> |
| 39 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 40 | </properties> |
| 41 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 42 | <build> |
| 43 | <plugins> |
| 44 | <plugin> |
| 45 | <groupId>org.apache.maven.plugins</groupId> |
| 46 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 47 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 48 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 49 | <source>1.7</source> |
| 50 | <target>1.7</target> |
| 51 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 52 | </configuration> |
| 53 | </plugin> |
| 54 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 55 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
| 56 | <artifactId>maven-jaxb2-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 57 | <version>0.9.0</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 58 | <executions> |
| 59 | <execution> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 60 | <id>configuration</id> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 61 | <goals> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 62 | <goal>generate</goal> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 63 | </goals> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 64 | <configuration> |
| 65 | <schemaDirectory>src/main/resources/schema</schemaDirectory> |
| 66 | <schemaIncludes> |
| 67 | <include>library.xsd</include> |
| 68 | </schemaIncludes> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 69 | <generatePackage>org.apache.asterix.external.library</generatePackage> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 70 | <generateDirectory>${project.build.directory}/generated-sources/configuration</generateDirectory> |
| 71 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 72 | </execution> |
| 73 | </executions> |
| 74 | </plugin> |
| 75 | <plugin> |
| 76 | <groupId>org.apache.maven.plugins</groupId> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 77 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 78 | <version>2.4</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 79 | <configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 80 | <includes> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 81 | <include>**/*.class</include> |
| 82 | <include>**/*.txt</include> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame^] | 83 | <include>**/DISCLAIMER</include> |
| 84 | <include>**/NOTICE</include> |
| 85 | <include>**/LICENSE</include> |
| 86 | <include>**/DEPENDENCIES</include> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 87 | </includes> |
| 88 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 89 | <executions> |
| 90 | <execution> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 91 | <goals> |
ramangrover29 | 8be29bd | 2013-06-11 08:59:44 -0700 | [diff] [blame] | 92 | <goal>test-jar</goal> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 93 | </goals> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 94 | <phase>package</phase> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 95 | </execution> |
| 96 | </executions> |
| 97 | </plugin> |
| 98 | <plugin> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 99 | <artifactId>maven-assembly-plugin</artifactId> |
| 100 | <version>2.2-beta-5</version> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <configuration> |
| 104 | <descriptor>src/main/assembly/binary-assembly-libzip.xml</descriptor> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 105 | <finalName>testlib-zip</finalName> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 106 | </configuration> |
ramangrover29 | d554ab4 | 2013-04-21 20:04:52 -0700 | [diff] [blame] | 107 | <phase>package</phase> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 108 | <goals> |
| 109 | <goal>attached</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 113 | </plugin> |
| 114 | </plugins> |
| 115 | </build> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 116 | <dependencies> |
| 117 | <dependency> |
| 118 | <groupId>javax.servlet</groupId> |
| 119 | <artifactId>servlet-api</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 120 | <type>jar</type> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 121 | </dependency> |
| 122 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 123 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 124 | <artifactId>asterix-om</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 125 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 126 | <type>jar</type> |
| 127 | <scope>compile</scope> |
| 128 | </dependency> |
| 129 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 130 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 131 | <artifactId>asterix-runtime</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 132 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 133 | <type>jar</type> |
| 134 | <scope>compile</scope> |
| 135 | </dependency> |
| 136 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 137 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 138 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 139 | <version>0.8.8-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 140 | <type>jar</type> |
| 141 | <scope>compile</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 144 | <groupId>org.apache.hyracks</groupId> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 145 | <artifactId>algebricks-compiler</artifactId> |
| 146 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 147 | <dependency> |
| 148 | <groupId>com.kenai.nbpwr</groupId> |
| 149 | <artifactId>org-apache-commons-io</artifactId> |
| 150 | <version>1.3.1-201002241208</version> |
| 151 | <scope>test</scope> |
| 152 | </dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 153 | <dependency> |
| 154 | <groupId>org.twitter4j</groupId> |
| 155 | <artifactId>twitter4j-core</artifactId> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 156 | <version>[3.0,)</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 157 | </dependency> |
| 158 | <dependency> |
ramangrover29 | ae85a1d | 2015-06-26 17:26:05 -0700 | [diff] [blame] | 159 | <groupId>org.twitter4j</groupId> |
| 160 | <artifactId>twitter4j-stream</artifactId> |
| 161 | <version>4.0.2</version> |
| 162 | </dependency> |
| 163 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 164 | <groupId>org.apache.hadoop</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 165 | <artifactId>hadoop-client</artifactId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 166 | <type>jar</type> |
| 167 | <scope>compile</scope> |
| 168 | </dependency> |
| 169 | <dependency> |
| 170 | <groupId>net.java.dev.rome</groupId> |
| 171 | <artifactId>rome-fetcher</artifactId> |
| 172 | <version>1.0.0</version> |
| 173 | <type>jar</type> |
| 174 | <scope>compile</scope> |
Vinayak Borkar | 3a43223 | 2013-05-31 11:47:58 -0700 | [diff] [blame] | 175 | <exclusions> |
| 176 | <exclusion> |
| 177 | <artifactId>rome</artifactId> |
| 178 | <groupId>net.java.dev.rome</groupId> |
| 179 | </exclusion> |
| 180 | </exclusions> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>rome</groupId> |
| 184 | <artifactId>rome</artifactId> |
| 185 | <version>1.0.1-modified-01</version> |
| 186 | </dependency> |
| 187 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 188 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 209adfb | 2013-06-03 14:21:22 -0700 | [diff] [blame] | 189 | <artifactId>hyracks-hdfs-core</artifactId> |
| 190 | <version>${hyracks.version}</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>jdom</groupId> |
| 194 | <artifactId>jdom</artifactId> |
| 195 | <version>1.0</version> |
| 196 | </dependency> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 197 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 198 | <groupId>org.apache.asterix</groupId> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 199 | <artifactId>asterix-common</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 200 | <version>0.8.8-SNAPSHOT</version> |
zheilbron | 553817e | 2013-06-24 15:08:19 -0700 | [diff] [blame] | 201 | </dependency> |
zheilbron | cb98388 | 2013-08-14 17:50:27 -0700 | [diff] [blame] | 202 | <dependency> |
| 203 | <groupId>com.microsoft.windowsazure</groupId> |
| 204 | <artifactId>microsoft-windowsazure-api</artifactId> |
| 205 | <version>0.4.4</version> |
| 206 | </dependency> |
Abdullah Alamoudi | d905773 | 2014-06-12 13:38:27 -0700 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>org.apache.hive</groupId> |
| 209 | <artifactId>hive-exec</artifactId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 210 | <version>0.13.0</version> |
Abdullah Alamoudi | d905773 | 2014-06-12 13:38:27 -0700 | [diff] [blame] | 211 | </dependency> |
| 212 | <dependency> |
| 213 | <groupId>javax.jdo</groupId> |
| 214 | <artifactId>jdo2-api</artifactId> |
| 215 | <version>2.3-20090302111651</version> |
| 216 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 217 | </dependencies> |
ramangrover29 | 5a50c9c | 2013-04-17 19:37:04 -0700 | [diff] [blame] | 218 | </project> |