blob: da53d0a0740c848fc3e3097d843d739def69df9b [file] [log] [blame]
vinayakb4df31102013-04-06 18:28:48 +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/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <artifactId>hyracks-storage-am-lsm-invertedindex-test</artifactId>
4
5 <parent>
6 <artifactId>hyracks-tests</artifactId>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <version>0.2.4-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <version>2.0.2</version>
18 <configuration>
19 <source>1.7</source>
20 <target>1.7</target>
21 </configuration>
22 </plugin>
23 </plugins>
24 </build>
25 <dependencies>
26 <dependency>
27 <groupId>edu.uci.ics.hyracks</groupId>
28 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
29 <version>0.2.4-SNAPSHOT</version>
30 <type>jar</type>
31 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-test-support</artifactId>
36 <version>0.2.4-SNAPSHOT</version>
37 <type>jar</type>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-data-std</artifactId>
43 <version>0.2.4-SNAPSHOT</version>
44 <type>jar</type>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
48
49</project>