Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 2 | ! Licensed to the Apache Software Foundation (ASF) under one |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 3 | ! or more contributor license agreements.See the NOTICE file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 4 | ! distributed with this work for additional information |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 5 | ! regarding copyright ownership.The ASF licenses this file |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 6 | ! to you under the Apache License, Version 2.0 (the |
| 7 | ! "License"); you may not use this file except in compliance |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 8 | ! with the License.You may obtain a copy of the License at |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 9 | ! |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 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 |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 15 | ! KIND, either express or implied.See the License for the |
Ian Maxon | 928bbd1 | 2015-09-14 17:12:48 -0700 | [diff] [blame] | 16 | ! specific language governing permissions and limitations |
| 17 | ! under the License. |
Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 18 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [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> |
Ian Maxon | ab556d1 | 2016-02-02 18:18:05 -0800 | [diff] [blame] | 22 | <artifactId>apache-asterixdb</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 23 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 24 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 25 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 26 | <artifactId>asterix-tools</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 27 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 28 | <licenses> |
| 29 | <license> |
| 30 | <name>Apache License, Version 2.0</name> |
| 31 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 32 | <distribution>repo</distribution> |
| 33 | <comments>A business-friendly OSS license</comments> |
| 34 | </license> |
| 35 | </licenses> |
| 36 | |
| 37 | <properties> |
| 38 | <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory> |
| 39 | </properties> |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 40 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <groupId>org.apache.maven.plugins</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 45 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 46 | <version>2.4</version> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 47 | <configuration> |
| 48 | <includes> |
| 49 | <include>**/*.class</include> |
| 50 | <include>**/README*</include> |
| 51 | <include>**/DISCLAIMER*</include> |
| 52 | <include>**/NOTICE*</include> |
| 53 | <include>**/LICENSE*</include> |
| 54 | <include>**/DEPENDENCIES*</include> |
| 55 | </includes> |
| 56 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 57 | </plugin> |
| 58 | </plugins> |
| 59 | </build> |
| 60 | |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 61 | <repositories> |
| 62 | <repository> |
| 63 | <id>central</id> |
| 64 | <url>http://repo1.maven.org/maven2</url> |
| 65 | <releases> |
| 66 | <enabled>true</enabled> |
| 67 | </releases> |
| 68 | <snapshots> |
| 69 | <enabled>false</enabled> |
| 70 | </snapshots> |
| 71 | </repository> |
| 72 | <repository> |
| 73 | <releases> |
| 74 | <enabled>true</enabled> |
| 75 | <updatePolicy>always</updatePolicy> |
| 76 | <checksumPolicy>warn</checksumPolicy> |
| 77 | </releases> |
| 78 | <snapshots> |
| 79 | <enabled>false</enabled> |
| 80 | <updatePolicy>never</updatePolicy> |
| 81 | <checksumPolicy>fail</checksumPolicy> |
| 82 | </snapshots> |
| 83 | <id>HDPReleases</id> |
| 84 | <name>HDP Releases</name> |
| 85 | <url>http://repo.hortonworks.com/content/repositories/releases</url> |
| 86 | <layout>default</layout> |
| 87 | </repository> |
| 88 | </repositories> |
| 89 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 90 | <dependencies> |
| 91 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 92 | <groupId>org.apache.asterix</groupId> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 93 | <artifactId>asterix-lang-aql</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 94 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 95 | <scope>compile</scope> |
| 96 | </dependency> |
| 97 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 98 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 99 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 100 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 104 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 105 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 106 | <version>0.8.9-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 107 | <scope>compile</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 110 | <groupId>org.apache.asterix</groupId> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 111 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 112 | <version>0.8.9-SNAPSHOT</version> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 113 | <scope>compile</scope> |
| 114 | </dependency> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 115 | <!--<dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 116 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 117 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 118 | <version>0.8.9-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 119 | <scope>compile</scope> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 120 | </dependency>--> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 121 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 122 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 123 | <artifactId>asterix-events</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame] | 124 | <version>0.8.9-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 125 | <scope>compile</scope> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.apache.hadoop</groupId> |
| 129 | <artifactId>hadoop-yarn-common</artifactId> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.apache.hadoop</groupId> |
| 133 | <artifactId>hadoop-yarn-client</artifactId> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.apache.hadoop</groupId> |
| 137 | <artifactId>hadoop-common</artifactId> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>commons-codec</groupId> |
| 141 | <artifactId>commons-codec</artifactId> |
| 142 | <version>1.4</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>commons-net</groupId> |
| 146 | <artifactId>commons-net</artifactId> |
| 147 | <version>3.1</version> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>commons-lang</groupId> |
| 151 | <artifactId>commons-lang</artifactId> |
| 152 | <version>2.5</version> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>commons-collections</groupId> |
| 156 | <artifactId>commons-collections</artifactId> |
| 157 | <version>3.2.1</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>commons-configuration</groupId> |
| 161 | <artifactId>commons-configuration</artifactId> |
| 162 | <version>1.6</version> |
| 163 | </dependency> |
| 164 | |
| 165 | <dependency> |
| 166 | <groupId>commons-cli</groupId> |
| 167 | <artifactId>commons-cli</artifactId> |
| 168 | <version>1.2</version> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.apache.commons</groupId> |
| 172 | <artifactId>commons-math</artifactId> |
| 173 | <version>2.1</version> |
| 174 | </dependency> |
| 175 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 176 | <groupId>org.apache.httpcomponents</groupId> |
| 177 | <artifactId>httpclient</artifactId> |
Yingyi Bu | 751315f | 2015-11-24 22:08:41 -0800 | [diff] [blame] | 178 | <version>4.3</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 179 | <scope>compile</scope> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>org.apache.httpcomponents</groupId> |
| 183 | <artifactId>httpcore</artifactId> |
Yingyi Bu | 751315f | 2015-11-24 22:08:41 -0800 | [diff] [blame] | 184 | <version>4.3</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 185 | <scope>compile</scope> |
| 186 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 187 | </dependencies> |
| 188 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 189 | </project> |