icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
| 4 | <artifactId>asterix</artifactId> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 5 | <groupId>org.apache.asterix</groupId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 6 | <version>0.8.7-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 7 | </parent> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 8 | <groupId>org.apache.asterix</groupId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 9 | <artifactId>asterix-fuzzyjoin</artifactId> |
Ian Maxon | f2ed8bc | 2014-07-11 23:50:44 -0700 | [diff] [blame] | 10 | <version>0.8.7-SNAPSHOT</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 11 | |
Ian | 4a816dc | 2014-11-26 15:46:32 -0800 | [diff] [blame] | 12 | <licenses> |
| 13 | <license> |
| 14 | <name>Apache License, Version 2.0</name> |
| 15 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 16 | <distribution>repo</distribution> |
| 17 | <comments>A business-friendly OSS license</comments> |
| 18 | </license> |
| 19 | </licenses> |
| 20 | |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 21 | <build> |
| 22 | <plugins> |
| 23 | <plugin> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 24 | <groupId>org.apache.maven.plugins</groupId> |
| 25 | <artifactId>maven-compiler-plugin</artifactId> |
| 26 | <version>2.3.2</version> |
| 27 | <configuration> |
| 28 | <source>1.7</source> |
| 29 | <target>1.7</target> |
| 30 | <compilerArguments> |
| 31 | <encoding>utf8</encoding> |
| 32 | </compilerArguments> |
| 33 | </configuration> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 34 | </plugin> |
| 35 | <plugin> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-jar-plugin</artifactId> |
| 38 | <version>2.4</version> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <goals> |
| 42 | <goal>test-jar</goal> |
| 43 | </goals> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 44 | <phase>test-compile</phase> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 45 | </execution> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 46 | </executions> |
| 47 | <configuration> |
| 48 | <outputDirectory>${basedir}/target</outputDirectory> |
| 49 | </configuration> |
| 50 | </plugin> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 51 | </plugins> |
| 52 | </build> |
| 53 | |
| 54 | <dependencies> |
| 55 | <dependency> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame] | 56 | <!-- Dependency management inherited from top-level asterixdb --> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 57 | <groupId>junit</groupId> |
| 58 | <artifactId>junit</artifactId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 59 | </dependency> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 60 | <dependency> |
Ian Maxon | f18bba2 | 2015-08-21 12:35:14 -0700 | [diff] [blame^] | 61 | <groupId>org.apache.hyracks</groupId> |
Taewoo Kim | a12d8cd | 2015-03-04 13:47:08 -0800 | [diff] [blame] | 62 | <artifactId>hyracks-api</artifactId> |
| 63 | </dependency> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 64 | </dependencies> |
| 65 | |
| 66 | </project> |