blob: c0264da173119285d953e6e067ce118906e5951e [file] [log] [blame]
Ian Maxonba7b55f2015-10-14 10:49:07 -07001<!--
2 ! Copyright 2009-2013 by The Regents of the University of California
3 ! Licensed under the Apache License, Version 2.0 (the "License");
4 ! you may not use this file except in compliance with the License.
5 ! you may obtain a copy of the License from
6 !
7 ! http://www.apache.org/licenses/LICENSE-2.0
8 !
9 ! Unless required by applicable law or agreed to in writing, software
10 ! distributed under the License is distributed on an "AS IS" BASIS,
11 ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 ! See the License for the specific language governing permissions and
13 ! limitations under the License.
14 !-->
icetindil82838a22013-10-11 16:41:18 -070015<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">
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
18 <artifactId>asterix</artifactId>
Ian Maxonf18bba22015-08-21 12:35:14 -070019 <groupId>org.apache.asterix</groupId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070020 <version>0.8.7-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070021 </parent>
Ian Maxonf18bba22015-08-21 12:35:14 -070022 <groupId>org.apache.asterix</groupId>
icetindil82838a22013-10-11 16:41:18 -070023 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070024 <version>0.8.7-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070025
Ian4a816dc2014-11-26 15:46:32 -080026 <licenses>
27 <license>
28 <name>Apache License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 <distribution>repo</distribution>
31 <comments>A business-friendly OSS license</comments>
32 </license>
33 </licenses>
34
icetindil82838a22013-10-11 16:41:18 -070035 <build>
36 <plugins>
37 <plugin>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080038 <groupId>org.apache.maven.plugins</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080039 <artifactId>maven-jar-plugin</artifactId>
40 <version>2.4</version>
41 <executions>
42 <execution>
43 <goals>
44 <goal>test-jar</goal>
45 </goals>
icetindil82838a22013-10-11 16:41:18 -070046 <phase>test-compile</phase>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080047 </execution>
icetindil82838a22013-10-11 16:41:18 -070048 </executions>
49 <configuration>
50 <outputDirectory>${basedir}/target</outputDirectory>
51 </configuration>
52 </plugin>
icetindil82838a22013-10-11 16:41:18 -070053 </plugins>
54 </build>
55
56 <dependencies>
57 <dependency>
58 <groupId>junit</groupId>
59 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070060 </dependency>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080061 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070062 <groupId>org.apache.hyracks</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080063 <artifactId>hyracks-api</artifactId>
64 </dependency>
icetindil82838a22013-10-11 16:41:18 -070065 </dependencies>
66
67</project>