Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 1 | <!-- |
Till Westmann | 5b431ca | 2015-10-01 19:16:11 -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 |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 9 | ! |
Till Westmann | 5b431ca | 2015-10-01 19:16:11 -0700 | [diff] [blame] | 10 | ! http://www.apache.org/licenses/LICENSE-2.0 |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 11 | ! |
Till Westmann | 5b431ca | 2015-10-01 19:16:11 -0700 | [diff] [blame] | 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. |
Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 18 | !--> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [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/maven-v4_0_0.xsd"> |
| 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> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 25 | </parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 26 | <groupId>org.apache.asterix</groupId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 27 | <artifactId>asterix-fuzzyjoin</artifactId> |
Ian Maxon | 4e6a923 | 2015-10-05 12:46:37 -0700 | [diff] [blame] | 28 | <version>0.8.8-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 29 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 30 | <licenses> |
| 31 | <license> |
| 32 | <name>Apache License, Version 2.0</name> |
| 33 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 34 | <distribution>repo</distribution> |
| 35 | <comments>A business-friendly OSS license</comments> |
| 36 | </license> |
| 37 | </licenses> |
| 38 | |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 42 | <groupId>org.apache.maven.plugins</groupId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 43 | <artifactId>maven-jar-plugin</artifactId> |
| 44 | <version>2.4</version> |
| 45 | <executions> |
| 46 | <execution> |
| 47 | <goals> |
| 48 | <goal>test-jar</goal> |
| 49 | </goals> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 50 | <phase>test-compile</phase> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 51 | </execution> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 52 | </executions> |
| 53 | <configuration> |
| 54 | <outputDirectory>${basedir}/target</outputDirectory> |
| 55 | </configuration> |
| 56 | </plugin> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 57 | </plugins> |
| 58 | </build> |
| 59 | |
| 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>junit</groupId> |
| 63 | <artifactId>junit</artifactId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 64 | </dependency> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 65 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 66 | <groupId>org.apache.hyracks</groupId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 67 | <artifactId>hyracks-api</artifactId> |
| 68 | </dependency> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.apache.hyracks</groupId> |
| 71 | <artifactId>hyracks-util</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.hyracks</groupId> |
| 75 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 76 | </dependency> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 77 | </dependencies> |
| 78 | |
| 79 | </project> |