blob: 0eab9ed8d1cffc8ea79233df677b1a1f2d4791f4 [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>
Michael Blowb4c1fb02016-05-09 15:41:00 -070022 <artifactId>apache-asterixdb</artifactId>
23 <groupId>org.apache.asterix</groupId>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070024 <version>0.9.5-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070025 </parent>
icetindil82838a22013-10-11 16:41:18 -070026 <artifactId>asterix-fuzzyjoin</artifactId>
icetindil82838a22013-10-11 16:41:18 -070027
Ian4a816dc2014-11-26 15:46:32 -080028 <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 Maxon6e5f18e2015-11-24 18:02:48 -080037 <properties>
Michael Blow4cd925c2018-01-20 17:15:38 -050038 <root.dir>${basedir}/..</root.dir>
Ian Maxon6e5f18e2015-11-24 18:02:48 -080039 </properties>
40
icetindil82838a22013-10-11 16:41:18 -070041 <build>
42 <plugins>
43 <plugin>
Michael Blowb4c1fb02016-05-09 15:41:00 -070044 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
Michael Blowb4c1fb02016-05-09 15:41:00 -070046 <executions>
47 <execution>
48 <goals>
49 <goal>test-jar</goal>
50 </goals>
icetindil82838a22013-10-11 16:41:18 -070051 <phase>test-compile</phase>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080052 </execution>
icetindil82838a22013-10-11 16:41:18 -070053 </executions>
icetindil82838a22013-10-11 16:41:18 -070054 </plugin>
Michael Blow82464fb2017-03-28 18:48:13 -040055 <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>
icetindil82838a22013-10-11 16:41:18 -070072 </plugins>
73 </build>
74
75 <dependencies>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
Michael Blow2da62dc2016-06-30 21:18:37 -040079 <scope>test</scope>
icetindil82838a22013-10-11 16:41:18 -070080 </dependency>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080081 <dependency>
Michael Blowb4c1fb02016-05-09 15:41:00 -070082 <groupId>org.apache.hyracks</groupId>
83 <artifactId>hyracks-api</artifactId>
Taewoo Kima12d8cd2015-03-04 13:47:08 -080084 </dependency>
JavierJia742aba82015-10-28 18:21:50 -070085 <dependency>
86 <groupId>org.apache.hyracks</groupId>
87 <artifactId>hyracks-util</artifactId>
88 </dependency>
Taewoo Kim56189fb2017-02-04 14:45:51 -080089 <dependency>
90 <groupId>org.apache.hyracks</groupId>
91 <artifactId>hyracks-data-std</artifactId>
92 </dependency>
Michael Blowb8307792018-03-13 20:45:51 -070093 <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>
icetindil82838a22013-10-11 16:41:18 -0700128 </dependencies>
129
130</project>