blob: 5eda528a957445c0cdc633091fb8bb5054ce9af8 [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +00001<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 <groupId>edu.uci.ics.hyracks</groupId>
4 <artifactId>hyracks-storage-am-invertedindex-test</artifactId>
vinayakb69525512013-03-25 03:17:32 +00005 <version>0.2.4-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-storage-am-invertedindex-test</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks-tests</artifactId>
vinayakb69525512013-03-25 03:17:32 +000011 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000012 </parent>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
buyingyi55df5212013-03-24 07:20:08 +000021 <source>1.7</source>
22 <target>1.7</target>
vinayakb0c860392012-10-06 18:47:20 +000023 <encoding>UTF-8</encoding>
buyingyi55df5212013-03-24 07:20:08 +000024 <fork>true</fork>
vinayakb0c860392012-10-06 18:47:20 +000025 </configuration>
26 </plugin>
27 </plugins>
28 </build>
29 <dependencies>
30 <dependency>
31 <groupId>edu.uci.ics.hyracks</groupId>
32 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb69525512013-03-25 03:17:32 +000033 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000034 <type>jar</type>
35 <scope>compile</scope>
36 </dependency>
37 <dependency>
38 <groupId>edu.uci.ics.hyracks</groupId>
39 <artifactId>hyracks-test-support</artifactId>
vinayakb69525512013-03-25 03:17:32 +000040 <version>0.2.4-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000041 <type>jar</type>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <version>4.8.1</version>
48 <type>jar</type>
49 <scope>test</scope>
50 </dependency>
51 </dependencies>
52</project>