Ian Maxon | ba7b55f | 2015-10-14 10:49:07 -0700 | [diff] [blame] | 1 | <!-- |
| 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 | !--> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 15 | <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 Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 19 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 20 | <version>0.8.7-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 21 | </parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 22 | <groupId>org.apache.asterix</groupId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 23 | <artifactId>asterix-fuzzyjoin</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 24 | <version>0.8.7-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 25 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 26 | <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 | |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 38 | <groupId>org.apache.maven.plugins</groupId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 39 | <artifactId>maven-jar-plugin</artifactId> |
| 40 | <version>2.4</version> |
| 41 | <executions> |
| 42 | <execution> |
| 43 | <goals> |
| 44 | <goal>test-jar</goal> |
| 45 | </goals> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 46 | <phase>test-compile</phase> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 47 | </execution> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 48 | </executions> |
| 49 | <configuration> |
| 50 | <outputDirectory>${basedir}/target</outputDirectory> |
| 51 | </configuration> |
| 52 | </plugin> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 53 | </plugins> |
| 54 | </build> |
| 55 | |
| 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 60 | </dependency> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 61 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame] | 62 | <groupId>org.apache.hyracks</groupId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 63 | <artifactId>hyracks-api</artifactId> |
| 64 | </dependency> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 65 | </dependencies> |
| 66 | |
| 67 | </project> |