blob: 92f9ddf7caa51b0864404532a44ac2fa2d91daca [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>
Ian Maxonab556d12016-02-02 18:18:05 -080022 <artifactId>apache-asterixdb</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070023 <groupId>org.apache.asterix</groupId>
Ian Maxonc1889c02016-02-10 15:26:24 -080024 <version>0.8.9-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 Maxonc1889c02016-02-10 15:26:24 -080028 <version>0.8.9-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
Ian Maxon6e5f18e2015-11-24 18:02:48 -080039 <properties>
40 <appendedResourcesDirectory>${basedir}/../src/main/appended-resources</appendedResourcesDirectory>
41 </properties>
42
icetindil82838a22013-10-11 16:41:18 -070043 <build>
44 <plugins>
45 <plugin>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080046 <groupId>org.apache.maven.plugins</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080047 <artifactId>maven-jar-plugin</artifactId>
48 <version>2.4</version>
49 <executions>
50 <execution>
51 <goals>
52 <goal>test-jar</goal>
53 </goals>
icetindil82838a22013-10-11 16:41:18 -070054 <phase>test-compile</phase>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080055 </execution>
icetindil82838a22013-10-11 16:41:18 -070056 </executions>
57 <configuration>
58 <outputDirectory>${basedir}/target</outputDirectory>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080059 <includes>
60 <include>**/*.class</include>
61 <include>**/*.txt</include>
62 <include>**/README*</include>
63 <include>**/DISCLAIMER*</include>
64 <include>**/NOTICE*</include>
65 <include>**/LICENSE*</include>
66 <include>**/DEPENDENCIES*</include>
67 </includes>
icetindil82838a22013-10-11 16:41:18 -070068 </configuration>
69 </plugin>
icetindil82838a22013-10-11 16:41:18 -070070 </plugins>
71 </build>
72
73 <dependencies>
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070077 </dependency>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080078 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070079 <groupId>org.apache.hyracks</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080080 <artifactId>hyracks-api</artifactId>
81 </dependency>
JavierJia742aba82015-10-28 18:21:50 -070082 <dependency>
83 <groupId>org.apache.hyracks</groupId>
84 <artifactId>hyracks-util</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hyracks</groupId>
88 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
89 </dependency>
icetindil82838a22013-10-11 16:41:18 -070090 </dependencies>
91
92</project>