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> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 22 | <artifactId>apache-asterixdb</artifactId> |
| 23 | <groupId>org.apache.asterix</groupId> |
AsterixDB Jenkins | 478eccb | 2018-08-31 14:57:31 -0700 | [diff] [blame] | 24 | <version>0.9.5-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 25 | </parent> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 26 | <artifactId>asterix-fuzzyjoin</artifactId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [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 | |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 37 | <properties> |
Michael Blow | 4cd925c | 2018-01-20 17:15:38 -0500 | [diff] [blame] | 38 | <root.dir>${basedir}/..</root.dir> |
Ian Maxon | 6e5f18e | 2015-11-24 18:02:48 -0800 | [diff] [blame] | 39 | </properties> |
| 40 | |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 41 | <build> |
| 42 | <plugins> |
| 43 | <plugin> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 44 | <groupId>org.apache.maven.plugins</groupId> |
| 45 | <artifactId>maven-jar-plugin</artifactId> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 46 | <executions> |
| 47 | <execution> |
| 48 | <goals> |
| 49 | <goal>test-jar</goal> |
| 50 | </goals> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 51 | <phase>test-compile</phase> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 52 | </execution> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 53 | </executions> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 54 | </plugin> |
Michael Blow | 82464fb | 2017-03-28 18:48:13 -0400 | [diff] [blame] | 55 | <plugin> |
| 56 | <groupId>org.apache.rat</groupId> |
| 57 | <artifactId>apache-rat-plugin</artifactId> |
| 58 | <executions> |
| 59 | <execution> |
| 60 | <phase>validate</phase> |
| 61 | <goals> |
| 62 | <goal>check</goal> |
| 63 | </goals> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | <configuration> |
| 67 | <excludes combine.children="append"> |
| 68 | <exclude>data/**</exclude> |
| 69 | </excludes> |
| 70 | </configuration> |
| 71 | </plugin> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 72 | </plugins> |
| 73 | </build> |
| 74 | |
| 75 | <dependencies> |
| 76 | <dependency> |
| 77 | <groupId>junit</groupId> |
| 78 | <artifactId>junit</artifactId> |
Michael Blow | 2da62dc | 2016-06-30 21:18:37 -0400 | [diff] [blame] | 79 | <scope>test</scope> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 80 | </dependency> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 81 | <dependency> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 82 | <groupId>org.apache.hyracks</groupId> |
| 83 | <artifactId>hyracks-api</artifactId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 84 | </dependency> |
JavierJia | 742aba8 | 2015-10-28 18:21:50 -0700 | [diff] [blame] | 85 | <dependency> |
| 86 | <groupId>org.apache.hyracks</groupId> |
| 87 | <artifactId>hyracks-util</artifactId> |
| 88 | </dependency> |
Taewoo Kim | 56189fb | 2017-02-04 14:45:51 -0800 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>org.apache.hyracks</groupId> |
| 91 | <artifactId>hyracks-data-std</artifactId> |
| 92 | </dependency> |
Michael Blow | b830779 | 2018-03-13 20:45:51 -0700 | [diff] [blame] | 93 | <dependency> |
| 94 | <groupId>org.apache.asterix</groupId> |
| 95 | <artifactId>asterix-om</artifactId> |
| 96 | <version>${project.version}</version> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.apache.asterix</groupId> |
| 100 | <artifactId>asterix-runtime</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.apache.hyracks</groupId> |
| 105 | <artifactId>algebricks-common</artifactId> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>org.apache.hyracks</groupId> |
| 109 | <artifactId>algebricks-core</artifactId> |
| 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.apache.hyracks</groupId> |
| 113 | <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.hyracks</groupId> |
| 117 | <artifactId>algebricks-runtime</artifactId> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.apache.asterix</groupId> |
| 121 | <artifactId>asterix-common</artifactId> |
| 122 | <version>${project.version}</version> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.apache.hyracks</groupId> |
| 126 | <artifactId>hyracks-dataflow-common</artifactId> |
| 127 | </dependency> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 128 | </dependencies> |
| 129 | |
| 130 | </project> |