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> |
| 5 | <groupId>edu.uci.ics.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> |
| 8 | <groupId>edu.uci.ics.asterix</groupId> |
| 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 | |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <version>2.3.2</version> |
| 18 | <configuration> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 21 | <compilerArguments> |
| 22 | <encoding>utf8</encoding> |
| 23 | </compilerArguments> |
| 24 | </configuration> |
| 25 | </plugin> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 28 | <artifactId>maven-jar-plugin</artifactId> |
Till Westmann | 6212c90 | 2014-07-30 15:44:59 -0700 | [diff] [blame] | 29 | <version>2.4</version> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 30 | <executions> |
| 31 | <execution> |
| 32 | <goals> |
| 33 | <goal>test-jar</goal> |
| 34 | </goals> |
| 35 | <phase>test-compile</phase> |
| 36 | </execution> |
| 37 | </executions> |
| 38 | <configuration> |
| 39 | <outputDirectory>${basedir}/target</outputDirectory> |
| 40 | </configuration> |
| 41 | </plugin> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 42 | </plugins> |
| 43 | </build> |
| 44 | |
| 45 | <dependencies> |
| 46 | <dependency> |
Chris Hillery | e2542dc | 2014-02-21 01:01:19 -0800 | [diff] [blame] | 47 | <!-- Dependency management inherited from top-level asterixdb --> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
icetindil | 82838a2 | 2013-10-11 16:41:18 -0700 | [diff] [blame] | 50 | </dependency> |
| 51 | </dependencies> |
| 52 | |
| 53 | </project> |