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 |
| 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. |
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> |
| 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> |
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 | 4a816dc | 2014-11-26 15:46:32 -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 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 40 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 41 | <version>2.4</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 42 | <executions> |
| 43 | <execution> |
| 44 | <id>aqlclient</id> |
| 45 | <goals> |
| 46 | <goal>jar</goal> |
| 47 | </goals> |
| 48 | <phase>package</phase> |
| 49 | <configuration> |
| 50 | <classifier>aqlclient</classifier> |
| 51 | <archive> |
| 52 | <manifest> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 53 | <MainClass>org.apache.asterix.tools.aqlclient.AqlClient</MainClass> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 54 | </manifest> |
| 55 | </archive> |
| 56 | <includes> |
| 57 | <include>**/uci/ics/asterix/tools/aqlclient/*</include> |
| 58 | </includes> |
| 59 | </configuration> |
| 60 | </execution> |
| 61 | </executions> |
| 62 | </plugin> |
| 63 | <plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 64 | <groupId>org.codehaus.mojo</groupId> |
| 65 | <artifactId>appassembler-maven-plugin</artifactId> |
| 66 | <version>1.0</version> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <configuration> |
| 70 | <programs> |
| 71 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 72 | <mainClass>org.apache.asterix.tools.TblToAdm</mainClass> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 73 | <name>tbl2adm</name> |
| 74 | </program> |
| 75 | <program> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 76 | <mainClass>org.apache.asterix.tools.datagen.AdgClientDriver</mainClass> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 77 | <name>adg</name> |
| 78 | </program> |
| 79 | </programs> |
| 80 | <repositoryLayout>flat</repositoryLayout> |
| 81 | <repositoryName>lib</repositoryName> |
| 82 | </configuration> |
| 83 | <phase>package</phase> |
| 84 | <goals> |
| 85 | <goal>assemble</goal> |
| 86 | </goals> |
| 87 | </execution> |
| 88 | </executions> |
| 89 | </plugin> |
| 90 | <plugin> |
| 91 | <artifactId>maven-assembly-plugin</artifactId> |
| 92 | <version>2.2-beta-5</version> |
| 93 | <executions> |
| 94 | <execution> |
| 95 | <configuration> |
| 96 | <descriptors> |
| 97 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 98 | </descriptors> |
| 99 | </configuration> |
| 100 | <phase>package</phase> |
| 101 | <goals> |
| 102 | <goal>attached</goal> |
| 103 | </goals> |
| 104 | </execution> |
| 105 | </executions> |
| 106 | </plugin> |
| 107 | </plugins> |
| 108 | </build> |
| 109 | |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 110 | <repositories> |
| 111 | <repository> |
| 112 | <id>central</id> |
| 113 | <url>http://repo1.maven.org/maven2</url> |
| 114 | <releases> |
| 115 | <enabled>true</enabled> |
| 116 | </releases> |
| 117 | <snapshots> |
| 118 | <enabled>false</enabled> |
| 119 | </snapshots> |
| 120 | </repository> |
| 121 | <repository> |
| 122 | <releases> |
| 123 | <enabled>true</enabled> |
| 124 | <updatePolicy>always</updatePolicy> |
| 125 | <checksumPolicy>warn</checksumPolicy> |
| 126 | </releases> |
| 127 | <snapshots> |
| 128 | <enabled>false</enabled> |
| 129 | <updatePolicy>never</updatePolicy> |
| 130 | <checksumPolicy>fail</checksumPolicy> |
| 131 | </snapshots> |
| 132 | <id>HDPReleases</id> |
| 133 | <name>HDP Releases</name> |
| 134 | <url>http://repo.hortonworks.com/content/repositories/releases</url> |
| 135 | <layout>default</layout> |
| 136 | </repository> |
| 137 | </repositories> |
| 138 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 139 | <dependencies> |
| 140 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 141 | <groupId>org.apache.asterix</groupId> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 142 | <artifactId>asterix-lang-aql</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 143 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 144 | <scope>compile</scope> |
| 145 | </dependency> |
| 146 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 147 | <groupId>org.apache.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 148 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 149 | <version>0.8.8-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 150 | <scope>compile</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 153 | <groupId>org.apache.asterix</groupId> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 154 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 155 | <version>0.8.8-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 159 | <groupId>org.apache.asterix</groupId> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 160 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 161 | <version>0.8.8-SNAPSHOT</version> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 162 | <scope>compile</scope> |
| 163 | </dependency> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 164 | <!--<dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 165 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 166 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 167 | <version>0.8.8-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 168 | <scope>compile</scope> |
Yingyi Bu | 391f09e | 2015-10-29 13:49:39 -0700 | [diff] [blame] | 169 | </dependency>--> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 170 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 171 | <groupId>org.apache.asterix</groupId> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 172 | <artifactId>asterix-events</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 173 | <version>0.8.8-SNAPSHOT</version> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 174 | <scope>compile</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
| 177 | <groupId>org.apache.hadoop</groupId> |
| 178 | <artifactId>hadoop-yarn-common</artifactId> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.apache.hadoop</groupId> |
| 182 | <artifactId>hadoop-yarn-client</artifactId> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.apache.hadoop</groupId> |
| 186 | <artifactId>hadoop-common</artifactId> |
| 187 | </dependency> |
| 188 | <dependency> |
| 189 | <groupId>commons-codec</groupId> |
| 190 | <artifactId>commons-codec</artifactId> |
| 191 | <version>1.4</version> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>commons-net</groupId> |
| 195 | <artifactId>commons-net</artifactId> |
| 196 | <version>3.1</version> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>commons-lang</groupId> |
| 200 | <artifactId>commons-lang</artifactId> |
| 201 | <version>2.5</version> |
| 202 | </dependency> |
| 203 | <dependency> |
| 204 | <groupId>commons-collections</groupId> |
| 205 | <artifactId>commons-collections</artifactId> |
| 206 | <version>3.2.1</version> |
| 207 | </dependency> |
| 208 | <dependency> |
| 209 | <groupId>commons-configuration</groupId> |
| 210 | <artifactId>commons-configuration</artifactId> |
| 211 | <version>1.6</version> |
| 212 | </dependency> |
| 213 | |
| 214 | <dependency> |
| 215 | <groupId>commons-cli</groupId> |
| 216 | <artifactId>commons-cli</artifactId> |
| 217 | <version>1.2</version> |
| 218 | </dependency> |
| 219 | <dependency> |
| 220 | <groupId>org.apache.commons</groupId> |
| 221 | <artifactId>commons-math</artifactId> |
| 222 | <version>2.1</version> |
| 223 | </dependency> |
| 224 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 225 | <groupId>org.apache.httpcomponents</groupId> |
| 226 | <artifactId>httpclient</artifactId> |
Yingyi Bu | 751315f | 2015-11-24 22:08:41 -0800 | [diff] [blame] | 227 | <version>4.3</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 228 | <scope>compile</scope> |
| 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>org.apache.httpcomponents</groupId> |
| 232 | <artifactId>httpcore</artifactId> |
Yingyi Bu | 751315f | 2015-11-24 22:08:41 -0800 | [diff] [blame] | 233 | <version>4.3</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 234 | <scope>compile</scope> |
| 235 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 236 | </dependencies> |
| 237 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 238 | </project> |