blob: 2066ed019fb2b78543f6318f404165817ab1ebc3 [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
Ian4a816dc2014-11-26 15:46:32 -080012 <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
icetindil82838a22013-10-11 16:41:18 -070021 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>2.3.2</version>
27 <configuration>
Till Westmann6212c902014-07-30 15:44:59 -070028 <source>1.7</source>
29 <target>1.7</target>
icetindil82838a22013-10-11 16:41:18 -070030 <compilerArguments>
31 <encoding>utf8</encoding>
32 </compilerArguments>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
icetindil82838a22013-10-11 16:41:18 -070037 <artifactId>maven-jar-plugin</artifactId>
Till Westmann6212c902014-07-30 15:44:59 -070038 <version>2.4</version>
icetindil82838a22013-10-11 16:41:18 -070039 <executions>
40 <execution>
41 <goals>
42 <goal>test-jar</goal>
43 </goals>
44 <phase>test-compile</phase>
45 </execution>
46 </executions>
47 <configuration>
48 <outputDirectory>${basedir}/target</outputDirectory>
49 </configuration>
50 </plugin>
icetindil82838a22013-10-11 16:41:18 -070051 </plugins>
52 </build>
53
54 <dependencies>
55 <dependency>
Chris Hillerye2542dc2014-02-21 01:01:19 -080056 <!-- Dependency management inherited from top-level asterixdb -->
icetindil82838a22013-10-11 16:41:18 -070057 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
icetindil82838a22013-10-11 16:41:18 -070059 </dependency>
60 </dependencies>
61
62</project>