blob: 5d66b818b74c3d752685dbf417eec64e24d1e65b [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>
vinayakb6390e6b2012-10-29 15:15:31 +00005 <version>0.2.2-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>
vinayakb6390e6b2012-10-29 15:15:31 +000011 <version>0.2.2-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>
21 <source>1.6</source>
22 <target>1.6</target>
23 <encoding>UTF-8</encoding>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
28 <dependencies>
29 <dependency>
30 <groupId>edu.uci.ics.hyracks</groupId>
31 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000032 <version>0.2.2-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000033 <type>jar</type>
34 <scope>compile</scope>
35 </dependency>
36 <dependency>
37 <groupId>edu.uci.ics.hyracks</groupId>
38 <artifactId>hyracks-test-support</artifactId>
vinayakb6390e6b2012-10-29 15:15:31 +000039 <version>0.2.2-SNAPSHOT</version>
vinayakb0c860392012-10-06 18:47:20 +000040 <type>jar</type>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <version>4.8.1</version>
47 <type>jar</type>
48 <scope>test</scope>
49 </dependency>
50 </dependencies>
51</project>