blob: fd33175c3e128938ca05a4d44e5f88c4b75cf4dc [file] [log] [blame]
icetindil82838a22013-10-11 16:41:18 -07001<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 Maxonf2ed8bc2014-07-11 23:50:44 -07006 <version>0.8.7-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -07007 </parent>
8 <groupId>edu.uci.ics.asterix</groupId>
9 <artifactId>asterix-fuzzyjoin</artifactId>
Ian Maxonf2ed8bc2014-07-11 23:50:44 -070010 <version>0.8.7-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -070011
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 Westmann6212c902014-07-30 15:44:59 -070019 <source>1.7</source>
20 <target>1.7</target>
icetindil82838a22013-10-11 16:41:18 -070021 <compilerArguments>
22 <encoding>utf8</encoding>
23 </compilerArguments>
24 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
icetindil82838a22013-10-11 16:41:18 -070028 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070029 <version>2.4</version>
icetindil82838a22013-10-11 16:41:18 -070030 <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>
icetindil82838a22013-10-11 16:41:18 -070042 </plugins>
43 </build>
44
45 <dependencies>
46 <dependency>
Chris Hillerye2542dc2014-02-21 01:01:19 -080047 <!-- Dependency management inherited from top-level asterixdb -->
icetindil82838a22013-10-11 16:41:18 -070048 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070050 </dependency>
51 </dependencies>
52
53</project>