blob: 95ecfd8d1ac38d3e2321585aea2d39e665c06b47 [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>
icetindild3cf6802014-01-29 01:38:40 -08006 <version>0.8.4-SNAPSHOT</version>
icetindil82838a22013-10-11 16:41:18 -07007 </parent>
8 <groupId>edu.uci.ics.asterix</groupId>
9 <artifactId>asterix-fuzzyjoin</artifactId>
icetindild3cf6802014-01-29 01:38:40 -080010 <version>0.8.4-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>
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>
48 <plugin>
49 <groupId>org.apache.maven.plugins</groupId>
50 <artifactId>maven-surefire-plugin</artifactId>
51 <configuration>
52 <forkMode>pertest</forkMode>
53 <argLine>-enableassertions -Xmx1g</argLine>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58
59 <dependencies>
60 <dependency>
61 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <version>4.8.1</version>
64 <type>jar</type>
65 <scope>test</scope>
66 </dependency>
67 </dependencies>
68
69</project>