blob: f95bcc1cc6c85118dbf49b9b58c2a2786b743cfe [file] [log] [blame]
Ian Maxonba7b55f2015-10-14 10:49:07 -07001<!--
Till Westmann5b431ca2015-10-01 19:16:11 -07002 ! 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 Maxonba7b55f2015-10-14 10:49:07 -07009 !
Till Westmann5b431ca2015-10-01 19:16:11 -070010 ! http://www.apache.org/licenses/LICENSE-2.0
Ian Maxonba7b55f2015-10-14 10:49:07 -070011 !
Till Westmann5b431ca2015-10-01 19:16:11 -070012 ! 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 Maxonba7b55f2015-10-14 10:49:07 -070018 !-->
icetindil82838a22013-10-11 16:41:18 -070019<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 Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070024 <version>0.8.8-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070025 </parent>
Ian Maxonf18bba22015-08-21 12:35:14 -070026 <groupId>org.apache.asterix</groupId>
icetindil82838a22013-10-11 16:41:18 -070027 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxon4e6a9232015-10-05 12:46:37 -070028 <version>0.8.8-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070029
Ian4a816dc2014-11-26 15:46:32 -080030 <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
icetindil82838a22013-10-11 16:41:18 -070039 <build>
40 <plugins>
41 <plugin>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080042 <groupId>org.apache.maven.plugins</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080043 <artifactId>maven-jar-plugin</artifactId>
44 <version>2.4</version>
45 <executions>
46 <execution>
47 <goals>
48 <goal>test-jar</goal>
49 </goals>
icetindil82838a22013-10-11 16:41:18 -070050 <phase>test-compile</phase>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080051 </execution>
icetindil82838a22013-10-11 16:41:18 -070052 </executions>
53 <configuration>
54 <outputDirectory>${basedir}/target</outputDirectory>
55 </configuration>
56 </plugin>
icetindil82838a22013-10-11 16:41:18 -070057 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070064 </dependency>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080065 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070066 <groupId>org.apache.hyracks</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080067 <artifactId>hyracks-api</artifactId>
68 </dependency>
JavierJia742aba82015-10-28 18:21:50 -070069 <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>
icetindil82838a22013-10-11 16:41:18 -070077 </dependencies>
78
79</project>