blob: 1f7ded25a80022e9abab66e26e41403e5b7aa4dc [file] [log] [blame]
Till Westmann5b431ca2015-10-01 19:16:11 -07001<!--
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
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
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.
18 !-->
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
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>
47 <artifactId>maven-compiler-plugin</artifactId>
48 <version>2.3.2</version>
49 <configuration>
50 <source>1.7</source>
51 <target>1.7</target>
52 <compilerArguments>
53 <encoding>utf8</encoding>
54 </compilerArguments>
55 </configuration>
icetindil82838a22013-10-11 16:41:18 -070056 </plugin>
57 <plugin>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080058 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-jar-plugin</artifactId>
60 <version>2.4</version>
61 <executions>
62 <execution>
63 <goals>
64 <goal>test-jar</goal>
65 </goals>
icetindil82838a22013-10-11 16:41:18 -070066 <phase>test-compile</phase>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080067 </execution>
icetindil82838a22013-10-11 16:41:18 -070068 </executions>
69 <configuration>
70 <outputDirectory>${basedir}/target</outputDirectory>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080071 <includes>
72 <include>**/*.class</include>
73 <include>**/*.txt</include>
74 <include>**/README*</include>
75 <include>**/DISCLAIMER*</include>
76 <include>**/NOTICE*</include>
77 <include>**/LICENSE*</include>
78 <include>**/DEPENDENCIES*</include>
79 </includes>
icetindil82838a22013-10-11 16:41:18 -070080 </configuration>
81 </plugin>
icetindil82838a22013-10-11 16:41:18 -070082 </plugins>
83 </build>
84
85 <dependencies>
86 <dependency>
Chris Hillerye2542dc2014-02-21 01:01:19 -080087 <!-- Dependency management inherited from top-level asterixdb -->
icetindil82838a22013-10-11 16:41:18 -070088 <groupId>junit</groupId>
89 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070090 </dependency>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080091 <dependency>
Ian Maxonf18bba22015-08-21 12:35:14 -070092 <groupId>org.apache.hyracks</groupId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080093 <artifactId>hyracks-api</artifactId>
94 </dependency>
icetindil82838a22013-10-11 16:41:18 -070095 </dependencies>
96
97</project>