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> |
| 45 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 46 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 47 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 48 | <source>1.7</source> |
| 49 | <target>1.7</target> |
| 50 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 51 | </configuration> |
| 52 | </plugin> |
| 53 | <plugin> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 54 | <groupId>org.apache.maven.plugins</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 55 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 56 | <version>2.4</version> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 57 | <configuration> |
| 58 | <includes> |
| 59 | <include>**/*.class</include> |
| 60 | <include>**/README*</include> |
| 61 | <include>**/DISCLAIMER*</include> |
| 62 | <include>**/NOTICE*</include> |
| 63 | <include>**/LICENSE*</include> |
| 64 | <include>**/DEPENDENCIES*</include> |
| 65 | </includes> |
| 66 | </configuration> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 67 | </plugin> |
| 68 | </plugins> |
| 69 | </build> |
| 70 | |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 71 | <repositories> |
| 72 | <repository> |
| 73 | <id>central</id> |
| 74 | <url>http://repo1.maven.org/maven2</url> |
| 75 | <releases> |
| 76 | <enabled>true</enabled> |
| 77 | </releases> |
| 78 | <snapshots> |
| 79 | <enabled>false</enabled> |
| 80 | </snapshots> |
| 81 | </repository> |
| 82 | <repository> |
| 83 | <releases> |
| 84 | <enabled>true</enabled> |
| 85 | <updatePolicy>always</updatePolicy> |
| 86 | <checksumPolicy>warn</checksumPolicy> |
| 87 | </releases> |
| 88 | <snapshots> |
| 89 | <enabled>false</enabled> |
| 90 | <updatePolicy>never</updatePolicy> |
| 91 | <checksumPolicy>fail</checksumPolicy> |
| 92 | </snapshots> |
| 93 | <id>HDPReleases</id> |
| 94 | <name>HDP Releases</name> |
| 95 | <url>http://repo.hortonworks.com/content/repositories/releases</url> |
| 96 | <layout>default</layout> |
| 97 | </repository> |
| 98 | </repositories> |
| 99 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 100 | <dependencies> |
| 101 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 102 | <groupId>org.apache.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 103 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 104 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 108 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 109 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 110 | <version>0.8.9-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 111 | <scope>compile</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 114 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 115 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 116 | <version>0.8.9-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 117 | <scope>compile</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 120 | <groupId>org.apache.asterix</groupId> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 121 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 122 | <version>0.8.9-SNAPSHOT</version> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 126 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 127 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 128 | <version>0.8.9-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 132 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 133 | <artifactId>asterix-events</artifactId> |
Ian Maxon | c1889c0 | 2016-02-10 15:26:24 -0800 | [diff] [blame^] | 134 | <version>0.8.9-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 135 | <scope>compile</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>org.apache.hadoop</groupId> |
| 139 | <artifactId>hadoop-yarn-common</artifactId> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>org.apache.hadoop</groupId> |
| 143 | <artifactId>hadoop-yarn-client</artifactId> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.apache.hadoop</groupId> |
| 147 | <artifactId>hadoop-common</artifactId> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>commons-codec</groupId> |
| 151 | <artifactId>commons-codec</artifactId> |
| 152 | <version>1.4</version> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>commons-net</groupId> |
| 156 | <artifactId>commons-net</artifactId> |
| 157 | <version>3.1</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>commons-lang</groupId> |
| 161 | <artifactId>commons-lang</artifactId> |
| 162 | <version>2.5</version> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>commons-collections</groupId> |
| 166 | <artifactId>commons-collections</artifactId> |
| 167 | <version>3.2.1</version> |
| 168 | </dependency> |
| 169 | <dependency> |
| 170 | <groupId>commons-configuration</groupId> |
| 171 | <artifactId>commons-configuration</artifactId> |
| 172 | <version>1.6</version> |
| 173 | </dependency> |
| 174 | |
| 175 | <dependency> |
| 176 | <groupId>commons-cli</groupId> |
| 177 | <artifactId>commons-cli</artifactId> |
| 178 | <version>1.2</version> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.apache.commons</groupId> |
| 182 | <artifactId>commons-math</artifactId> |
| 183 | <version>2.1</version> |
| 184 | </dependency> |
| 185 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 186 | <groupId>org.apache.httpcomponents</groupId> |
| 187 | <artifactId>httpclient</artifactId> |
| 188 | <version>4.2.2</version> |
| 189 | <scope>compile</scope> |
| 190 | </dependency> |
| 191 | <dependency> |
| 192 | <groupId>org.apache.httpcomponents</groupId> |
| 193 | <artifactId>httpcore</artifactId> |
| 194 | <version>4.2.2</version> |
| 195 | <scope>compile</scope> |
| 196 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 197 | </dependencies> |
| 198 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 199 | </project> |