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