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