Till Westmann | ea8ab39 | 2013-06-05 15:17:08 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ! Copyright 2009-2013 by The Regents of the University of California |
| 3 | ! Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | ! you may not use this file except in compliance with the License. |
| 5 | ! you may obtain a copy of the License from |
| 6 | ! |
| 7 | ! http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | ! |
| 9 | ! Unless required by applicable law or agreed to in writing, software |
| 10 | ! distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | ! See the License for the specific language governing permissions and |
| 13 | ! limitations under the License. |
| 14 | !--> |
vinayakb | 8a1a718 | 2013-04-07 01:45:00 +0000 | [diff] [blame] | 15 | <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] | 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>asterix</artifactId> |
| 19 | <groupId>edu.uci.ics.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </parent> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 22 | <artifactId>asterix-tools</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 23 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame^] | 24 | <licenses> |
| 25 | <license> |
| 26 | <name>Apache License, Version 2.0</name> |
| 27 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 28 | <distribution>repo</distribution> |
| 29 | <comments>A business-friendly OSS license</comments> |
| 30 | </license> |
| 31 | </licenses> |
| 32 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 38 | <version>2.3.2</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 39 | <configuration> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 40 | <source>1.7</source> |
| 41 | <target>1.7</target> |
| 42 | <fork>true</fork> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 43 | </configuration> |
| 44 | </plugin> |
| 45 | <plugin> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 46 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 47 | <version>2.4</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 48 | <executions> |
| 49 | <execution> |
| 50 | <id>aqlclient</id> |
| 51 | <goals> |
| 52 | <goal>jar</goal> |
| 53 | </goals> |
| 54 | <phase>package</phase> |
| 55 | <configuration> |
| 56 | <classifier>aqlclient</classifier> |
| 57 | <archive> |
| 58 | <manifest> |
| 59 | <MainClass>edu.uci.ics.asterix.tools.aqlclient.AqlClient</MainClass> |
| 60 | </manifest> |
| 61 | </archive> |
| 62 | <includes> |
| 63 | <include>**/uci/ics/asterix/tools/aqlclient/*</include> |
| 64 | </includes> |
| 65 | </configuration> |
| 66 | </execution> |
| 67 | </executions> |
| 68 | </plugin> |
| 69 | <plugin> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 70 | <groupId>org.codehaus.mojo</groupId> |
| 71 | <artifactId>appassembler-maven-plugin</artifactId> |
| 72 | <version>1.0</version> |
| 73 | <executions> |
| 74 | <execution> |
| 75 | <configuration> |
| 76 | <programs> |
| 77 | <program> |
| 78 | <mainClass>edu.uci.ics.asterix.tools.TblToAdm</mainClass> |
| 79 | <name>tbl2adm</name> |
| 80 | </program> |
| 81 | <program> |
| 82 | <mainClass>edu.uci.ics.asterix.tools.datagen.AdgClientDriver</mainClass> |
| 83 | <name>adg</name> |
| 84 | </program> |
| 85 | </programs> |
| 86 | <repositoryLayout>flat</repositoryLayout> |
| 87 | <repositoryName>lib</repositoryName> |
| 88 | </configuration> |
| 89 | <phase>package</phase> |
| 90 | <goals> |
| 91 | <goal>assemble</goal> |
| 92 | </goals> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | </plugin> |
| 96 | <plugin> |
| 97 | <artifactId>maven-assembly-plugin</artifactId> |
| 98 | <version>2.2-beta-5</version> |
| 99 | <executions> |
| 100 | <execution> |
| 101 | <configuration> |
| 102 | <descriptors> |
| 103 | <descriptor>src/main/assembly/binary-assembly.xml</descriptor> |
| 104 | </descriptors> |
| 105 | </configuration> |
| 106 | <phase>package</phase> |
| 107 | <goals> |
| 108 | <goal>attached</goal> |
| 109 | </goals> |
| 110 | </execution> |
| 111 | </executions> |
| 112 | </plugin> |
| 113 | </plugins> |
| 114 | </build> |
| 115 | |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 116 | <repositories> |
| 117 | <repository> |
| 118 | <id>central</id> |
| 119 | <url>http://repo1.maven.org/maven2</url> |
| 120 | <releases> |
| 121 | <enabled>true</enabled> |
| 122 | </releases> |
| 123 | <snapshots> |
| 124 | <enabled>false</enabled> |
| 125 | </snapshots> |
| 126 | </repository> |
| 127 | <repository> |
| 128 | <releases> |
| 129 | <enabled>true</enabled> |
| 130 | <updatePolicy>always</updatePolicy> |
| 131 | <checksumPolicy>warn</checksumPolicy> |
| 132 | </releases> |
| 133 | <snapshots> |
| 134 | <enabled>false</enabled> |
| 135 | <updatePolicy>never</updatePolicy> |
| 136 | <checksumPolicy>fail</checksumPolicy> |
| 137 | </snapshots> |
| 138 | <id>HDPReleases</id> |
| 139 | <name>HDP Releases</name> |
| 140 | <url>http://repo.hortonworks.com/content/repositories/releases</url> |
| 141 | <layout>default</layout> |
| 142 | </repository> |
| 143 | </repositories> |
| 144 | |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 145 | <dependencies> |
| 146 | <dependency> |
| 147 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 148 | <artifactId>asterix-aql</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 149 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 150 | <scope>compile</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>edu.uci.ics.asterix</groupId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 154 | <artifactId>asterix-algebra</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 155 | <version>0.8.7-SNAPSHOT</version> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 156 | <scope>compile</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 159 | <groupId>edu.uci.ics.asterix</groupId> |
| 160 | <artifactId>asterix-external-data</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 161 | <version>0.8.7-SNAPSHOT</version> |
ramangrover29 | 566b3a9 | 2013-05-28 09:07:10 -0700 | [diff] [blame] | 162 | <scope>compile</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 165 | <groupId>edu.uci.ics.asterix</groupId> |
| 166 | <artifactId>asterix-metadata</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 167 | <version>0.8.7-SNAPSHOT</version> |
Raman Grover | d4fd2ed | 2013-11-07 20:40:21 +0530 | [diff] [blame] | 168 | <scope>compile</scope> |
| 169 | </dependency> |
| 170 | <dependency> |
Ian | 18997ce | 2014-09-22 16:14:39 -0700 | [diff] [blame] | 171 | <groupId>edu.uci.ics.asterix</groupId> |
| 172 | <artifactId>asterix-metadata</artifactId> |
| 173 | <version>0.8.7-SNAPSHOT</version> |
| 174 | <scope>compile</scope> |
| 175 | </dependency> |
| 176 | <dependency> |
| 177 | <groupId>edu.uci.ics.asterix</groupId> |
| 178 | <artifactId>asterix-events</artifactId> |
| 179 | <version>0.8.7-SNAPSHOT</version> |
| 180 | <scope>compile</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.apache.hadoop</groupId> |
| 184 | <artifactId>hadoop-yarn-common</artifactId> |
| 185 | </dependency> |
| 186 | <dependency> |
| 187 | <groupId>org.apache.hadoop</groupId> |
| 188 | <artifactId>hadoop-yarn-client</artifactId> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>org.apache.hadoop</groupId> |
| 192 | <artifactId>hadoop-common</artifactId> |
| 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>commons-codec</groupId> |
| 196 | <artifactId>commons-codec</artifactId> |
| 197 | <version>1.4</version> |
| 198 | </dependency> |
| 199 | <dependency> |
| 200 | <groupId>commons-net</groupId> |
| 201 | <artifactId>commons-net</artifactId> |
| 202 | <version>3.1</version> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>commons-lang</groupId> |
| 206 | <artifactId>commons-lang</artifactId> |
| 207 | <version>2.5</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>commons-collections</groupId> |
| 211 | <artifactId>commons-collections</artifactId> |
| 212 | <version>3.2.1</version> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>commons-configuration</groupId> |
| 216 | <artifactId>commons-configuration</artifactId> |
| 217 | <version>1.6</version> |
| 218 | </dependency> |
| 219 | |
| 220 | <dependency> |
| 221 | <groupId>commons-cli</groupId> |
| 222 | <artifactId>commons-cli</artifactId> |
| 223 | <version>1.2</version> |
| 224 | </dependency> |
| 225 | <dependency> |
| 226 | <groupId>org.apache.commons</groupId> |
| 227 | <artifactId>commons-math</artifactId> |
| 228 | <version>2.1</version> |
| 229 | </dependency> |
| 230 | <dependency> |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 231 | <groupId>org.apache.httpcomponents</groupId> |
| 232 | <artifactId>httpclient</artifactId> |
| 233 | <version>4.2.2</version> |
| 234 | <scope>compile</scope> |
| 235 | </dependency> |
| 236 | <dependency> |
| 237 | <groupId>org.apache.httpcomponents</groupId> |
| 238 | <artifactId>httpcore</artifactId> |
| 239 | <version>4.2.2</version> |
| 240 | <scope>compile</scope> |
| 241 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 242 | </dependencies> |
| 243 | |
vinayakb | 5ee049d | 2013-04-06 21:21:29 +0000 | [diff] [blame] | 244 | </project> |