blob: 95dcc61b513b5476a47b76a17cca13eec5e8affa [file] [log] [blame]
vinayakb74c72072011-01-06 23:41:16 +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>
vinayakbf46fefa2011-10-12 02:54:11 +00005 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-tests</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000010 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +000011 </parent>
12
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <version>2.0.2</version>
19 <configuration>
20 <source>1.6</source>
21 <target>1.6</target>
jarodwenc6b4c112011-11-28 05:45:06 +000022 <encoding>UTF-8</encoding>
vinayakb74c72072011-01-06 23:41:16 +000023 </configuration>
24 </plugin>
25 </plugins>
26 </build>
alexander.behm1d0f9a62012-02-14 23:28:03 +000027 <dependencies>
vinayakb74c72072011-01-06 23:41:16 +000028 <dependency>
29 <groupId>edu.uci.ics.hyracks</groupId>
30 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000031 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +000032 <type>jar</type>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-test-support</artifactId>
vinayakbf46fefa2011-10-12 02:54:11 +000038 <version>0.2.0-SNAPSHOT</version>
vinayakb74c72072011-01-06 23:41:16 +000039 <type>jar</type>
40 <scope>test</scope>
alexander.behm1d0f9a62012-02-14 23:28:03 +000041 </dependency>
vinayakb74c72072011-01-06 23:41:16 +000042 </dependencies>
43</project>