blob: 420dff7e8e172f8c33c992bc4a44b219b171bba2 [file] [log] [blame]
vinayakb09a36972011-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>
vinayakbb5ee1012012-09-28 02:24:00 +00005 <version>0.2.1</version>
vinayakb09a36972011-01-06 23:41:16 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-tests</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000010 <version>0.2.1</version>
vinayakb09a36972011-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>
vinayakb25206b62012-03-13 08:50:40 +000022 <encoding>UTF-8</encoding>
vinayakb09a36972011-01-06 23:41:16 +000023 </configuration>
24 </plugin>
25 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>edu.uci.ics.hyracks</groupId>
vinayakb09a36972011-01-06 23:41:16 +000030 <artifactId>hyracks-storage-am-invertedindex</artifactId>
vinayakbb5ee1012012-09-28 02:24:00 +000031 <version>0.2.1</version>
vinayakb09a36972011-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>
vinayakbb5ee1012012-09-28 02:24:00 +000038 <version>0.2.1</version>
vinayakb09a36972011-01-06 23:41:16 +000039 <type>jar</type>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>4.8.1</version>
46 <type>jar</type>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50</project>