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