Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -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 | 1ca34f4 | 2013-03-25 03:17:01 +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/maven-v4_0_0.xsd"> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 16 | <modelVersion>4.0.0</modelVersion> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 17 | <artifactId>hivesterix-runtime</artifactId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 18 | <name>hivesterix-runtime</name> |
| 19 | |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>edu.uci.ics.hyracks</groupId> |
| 22 | <artifactId>hivesterix</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 23 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 24 | </parent> |
| 25 | |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 26 | <dependencies> |
buyingyi | ef88ddb | 2013-03-25 02:57:39 +0000 | [diff] [blame] | 27 | <dependency> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 28 | <groupId>javax.servlet</groupId> |
| 29 | <artifactId>servlet-api</artifactId> |
| 30 | <version>2.5</version> |
| 31 | <type>jar</type> |
| 32 | <scope>compile</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>junit</groupId> |
| 36 | <artifactId>junit</artifactId> |
| 37 | <version>4.8.1</version> |
| 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>args4j</groupId> |
| 42 | <artifactId>args4j</artifactId> |
| 43 | <version>2.0.12</version> |
| 44 | <type>jar</type> |
| 45 | <scope>compile</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.json</groupId> |
| 49 | <artifactId>json</artifactId> |
| 50 | <version>20090211</version> |
| 51 | <type>jar</type> |
| 52 | <scope>compile</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.eclipse.jetty</groupId> |
| 56 | <artifactId>jetty-server</artifactId> |
| 57 | <version>8.0.0.M1</version> |
| 58 | <type>jar</type> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.eclipse.jetty</groupId> |
| 63 | <artifactId>jetty-servlet</artifactId> |
| 64 | <version>8.0.0.M1</version> |
| 65 | <type>jar</type> |
| 66 | <scope>compile</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>jline</groupId> |
| 70 | <artifactId>jline</artifactId> |
| 71 | <version>0.9.94</version> |
| 72 | <type>jar</type> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.datanucleus</groupId> |
| 77 | <artifactId>datanucleus-core</artifactId> |
| 78 | <version>2.0.3</version> |
| 79 | <type>jar</type> |
| 80 | <scope>compile</scope> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.datanucleus</groupId> |
| 84 | <artifactId>datanucleus-connectionpool</artifactId> |
| 85 | <version>2.0.3</version> |
| 86 | <type>jar</type> |
| 87 | <scope>compile</scope> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.datanucleus</groupId> |
| 91 | <artifactId>datanucleus-enhancer</artifactId> |
| 92 | <version>2.0.3</version> |
| 93 | <type>jar</type> |
| 94 | <scope>compile</scope> |
| 95 | </dependency> |
| 96 | <dependency> |
| 97 | <groupId>org.datanucleus</groupId> |
| 98 | <artifactId>datanucleus-rdbms</artifactId> |
| 99 | <version>2.0.3</version> |
| 100 | <type>jar</type> |
| 101 | <scope>compile</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>commons-dbcp</groupId> |
| 105 | <artifactId>commons-dbcp</artifactId> |
| 106 | <version>1.4</version> |
| 107 | <type>jar</type> |
| 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>commons-pool</groupId> |
| 112 | <artifactId>commons-pool</artifactId> |
| 113 | <version>1.5.4</version> |
| 114 | <type>jar</type> |
| 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | <dependency> |
| 118 | <groupId>commons-collections</groupId> |
| 119 | <artifactId>commons-collections</artifactId> |
| 120 | <version>3.2.1</version> |
| 121 | <type>jar</type> |
| 122 | <scope>compile</scope> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>commons-lang</groupId> |
| 126 | <artifactId>commons-lang</artifactId> |
| 127 | <version>2.4</version> |
| 128 | <type>jar</type> |
| 129 | <scope>compile</scope> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>javax</groupId> |
| 133 | <artifactId>jdo2-api</artifactId> |
| 134 | <version>2.3-ec</version> |
| 135 | <scope>compile</scope> |
| 136 | </dependency> |
| 137 | <dependency> |
| 138 | <groupId>com.facebook</groupId> |
| 139 | <artifactId>libfb303</artifactId> |
| 140 | <version>0.5.0</version> |
| 141 | <scope>compile</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
| 144 | <groupId>org.apache.thrift</groupId> |
| 145 | <artifactId>libthrift</artifactId> |
| 146 | <version>0.5.0</version> |
| 147 | <scope>compile</scope> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>org.apache.commons</groupId> |
| 151 | <artifactId>cli</artifactId> |
| 152 | <version>1.2</version> |
| 153 | <scope>compile</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.apache</groupId> |
| 157 | <artifactId>log4j</artifactId> |
| 158 | <version>1.2.15</version> |
| 159 | <type>jar</type> |
| 160 | <scope>compile</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.antlr</groupId> |
| 164 | <artifactId>antlr-runtime</artifactId> |
| 165 | <version>3.0.1</version> |
| 166 | <scope>compile</scope> |
| 167 | </dependency> |
| 168 | <dependency> |
| 169 | <groupId>org.apache.hadoop.hive</groupId> |
| 170 | <artifactId>hive-cli</artifactId> |
| 171 | <version>0.7.0</version> |
| 172 | <type>jar</type> |
| 173 | <scope>compile</scope> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.apache.hadoop.hive</groupId> |
| 177 | <artifactId>hive-common</artifactId> |
| 178 | <version>0.7.0</version> |
| 179 | <type>jar</type> |
| 180 | <scope>compile</scope> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.apache.hadoop.hive</groupId> |
| 184 | <artifactId>hive-exec</artifactId> |
| 185 | <version>0.7.0</version> |
| 186 | <type>jar</type> |
| 187 | <scope>compile</scope> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>org.apache.hadoop.hive</groupId> |
| 191 | <artifactId>hive-hwi</artifactId> |
| 192 | <version>0.7.0</version> |
| 193 | <type>jar</type> |
| 194 | <scope>compile</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>org.apache.hadoop.hive</groupId> |
| 198 | <artifactId>hive-jdbc</artifactId> |
| 199 | <version>0.7.0</version> |
| 200 | <type>jar</type> |
| 201 | <scope>compile</scope> |
| 202 | </dependency> |
| 203 | <dependency> |
| 204 | <groupId>org.apache.hadoop.hive</groupId> |
| 205 | <artifactId>hive-metastore</artifactId> |
| 206 | <version>0.7.0</version> |
| 207 | <type>jar</type> |
| 208 | <scope>compile</scope> |
| 209 | </dependency> |
| 210 | <dependency> |
| 211 | <groupId>org.apache.hadoop.hive</groupId> |
| 212 | <artifactId>hive-service</artifactId> |
| 213 | <version>0.7.0</version> |
| 214 | <type>jar</type> |
| 215 | <scope>compile</scope> |
| 216 | </dependency> |
| 217 | <dependency> |
| 218 | <groupId>org.apache.hadoop.hive</groupId> |
| 219 | <artifactId>hive-shims</artifactId> |
| 220 | <version>0.7.0</version> |
| 221 | <type>jar</type> |
| 222 | <scope>compile</scope> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>org.apache.hadoop.hive</groupId> |
| 226 | <artifactId>hive-serde</artifactId> |
| 227 | <version>0.7.0</version> |
| 228 | <type>jar</type> |
| 229 | <scope>compile</scope> |
| 230 | </dependency> |
| 231 | <dependency> |
| 232 | <groupId>org.slf4j</groupId> |
| 233 | <artifactId>slf4j-api</artifactId> |
| 234 | <version>1.6.1</version> |
| 235 | <type>jar</type> |
| 236 | <scope>compile</scope> |
| 237 | </dependency> |
| 238 | <dependency> |
| 239 | <groupId>commons-cli</groupId> |
| 240 | <artifactId>commons-cli</artifactId> |
| 241 | <version>1.2</version> |
| 242 | <type>jar</type> |
| 243 | <scope>compile</scope> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>org.slf4j</groupId> |
| 247 | <artifactId>slf4j-log4j12</artifactId> |
| 248 | <version>1.6.1</version> |
| 249 | <type>jar</type> |
| 250 | <scope>compile</scope> |
| 251 | </dependency> |
| 252 | <dependency> |
| 253 | <groupId>commons-logging</groupId> |
| 254 | <artifactId>commons-logging</artifactId> |
| 255 | <version>1.1.1</version> |
| 256 | <type>jar</type> |
| 257 | <classifier>api</classifier> |
| 258 | <scope>compile</scope> |
| 259 | </dependency> |
| 260 | <dependency> |
| 261 | <groupId>com.google.guava</groupId> |
| 262 | <artifactId>guava</artifactId> |
| 263 | <version>r06</version> |
| 264 | <type>jar</type> |
| 265 | <scope>compile</scope> |
| 266 | </dependency> |
| 267 | <dependency> |
| 268 | <groupId>org.antlr</groupId> |
| 269 | <artifactId>stringtemplate</artifactId> |
| 270 | <version>3.2</version> |
| 271 | <type>jar</type> |
| 272 | <scope>compile</scope> |
| 273 | </dependency> |
| 274 | <dependency> |
| 275 | <groupId>org.apache.derby</groupId> |
| 276 | <artifactId>derby</artifactId> |
| 277 | <version>10.8.1.2</version> |
| 278 | <type>jar</type> |
| 279 | <scope>compile</scope> |
| 280 | </dependency> |
| 281 | <dependency> |
| 282 | <groupId>org.apache.hbase</groupId> |
| 283 | <artifactId>hbase</artifactId> |
| 284 | <version>0.90.3</version> |
| 285 | <type>jar</type> |
| 286 | <scope>compile</scope> |
| 287 | </dependency> |
| 288 | <dependency> |
| 289 | <groupId>edu.uci.ics.hyracks</groupId> |
| 290 | <artifactId>algebricks-compiler</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 291 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 292 | <type>jar</type> |
| 293 | <scope>compile</scope> |
| 294 | </dependency> |
| 295 | <dependency> |
| 296 | <groupId>edu.uci.ics.hyracks</groupId> |
| 297 | <artifactId>hyracks-control-cc</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 298 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 299 | <type>jar</type> |
| 300 | <scope>compile</scope> |
| 301 | </dependency> |
| 302 | <dependency> |
| 303 | <groupId>edu.uci.ics.hyracks</groupId> |
| 304 | <artifactId>hyracks-control-nc</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 305 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 306 | <type>jar</type> |
| 307 | <scope>compile</scope> |
| 308 | </dependency> |
| 309 | <dependency> |
| 310 | <groupId>edu.uci.ics.hyracks</groupId> |
| 311 | <artifactId>hivesterix-serde</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 312 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 313 | <type>jar</type> |
| 314 | <scope>compile</scope> |
| 315 | </dependency> |
| 316 | <dependency> |
| 317 | <groupId>edu.uci.ics.hyracks</groupId> |
| 318 | <artifactId>hivesterix-common</artifactId> |
Vinayak Borkar | 706863b | 2013-06-05 23:16:52 -0700 | [diff] [blame] | 319 | <version>0.2.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 320 | <type>jar</type> |
| 321 | <scope>compile</scope> |
| 322 | </dependency> |
| 323 | </dependencies> |
| 324 | <build> |
| 325 | <plugins> |
| 326 | <plugin> |
| 327 | <groupId>org.apache.maven.plugins</groupId> |
| 328 | <artifactId>maven-compiler-plugin</artifactId> |
| 329 | <version>2.0.2</version> |
| 330 | <configuration> |
| 331 | <source>1.7</source> |
| 332 | <target>1.7</target> |
| 333 | <encoding>UTF-8</encoding> |
| 334 | <fork>true</fork> |
| 335 | </configuration> |
| 336 | </plugin> |
| 337 | <plugin> |
| 338 | <artifactId>maven-jar-plugin</artifactId> |
| 339 | <executions> |
| 340 | <execution> |
| 341 | <id>patch</id> |
| 342 | <goals> |
| 343 | <goal>jar</goal> |
| 344 | </goals> |
| 345 | <phase>package</phase> |
| 346 | <configuration> |
| 347 | <classifier>patch</classifier> |
| 348 | <finalName>a-hive-rumtime</finalName> |
| 349 | <includes> |
| 350 | <include>**/org/apache/**</include> |
| 351 | </includes> |
| 352 | </configuration> |
| 353 | </execution> |
| 354 | </executions> |
| 355 | </plugin> |
| 356 | </plugins> |
| 357 | </build> |
| 358 | <repositories> |
| 359 | <repository> |
| 360 | <releases> |
| 361 | <enabled>true</enabled> |
| 362 | <updatePolicy>always</updatePolicy> |
| 363 | <checksumPolicy>warn</checksumPolicy> |
| 364 | </releases> |
| 365 | <snapshots> |
| 366 | <enabled>true</enabled> |
| 367 | <updatePolicy>always</updatePolicy> |
| 368 | <checksumPolicy>fail</checksumPolicy> |
| 369 | </snapshots> |
| 370 | <id>third-party</id> |
| 371 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/third-party</url> |
| 372 | </repository> |
| 373 | <repository> |
| 374 | <releases> |
| 375 | <enabled>true</enabled> |
| 376 | <updatePolicy>always</updatePolicy> |
| 377 | <checksumPolicy>warn</checksumPolicy> |
| 378 | </releases> |
| 379 | <snapshots> |
| 380 | <enabled>true</enabled> |
| 381 | <updatePolicy>always</updatePolicy> |
| 382 | <checksumPolicy>fail</checksumPolicy> |
| 383 | </snapshots> |
| 384 | <id>hyracks-public-release</id> |
| 385 | <url>http://obelix.ics.uci.edu/nexus/content/repositories/hyracks-public-releases</url> |
| 386 | </repository> |
| 387 | </repositories> |
| 388 | </project> |