blob: da53d0a0740c848fc3e3097d843d739def69df9b [file] [log] [blame]
zheilbron5728a702013-03-04 18:43:03 +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>
zheilbron6ccde412013-03-26 23:48:15 +00008 <version>0.2.4-SNAPSHOT</version>
zheilbron5728a702013-03-04 18:43:03 +00009 <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>
zheilbron6ccde412013-03-26 23:48:15 +000029 <version>0.2.4-SNAPSHOT</version>
zheilbron5728a702013-03-04 18:43:03 +000030 <type>jar</type>
31 <scope>compile</scope>
32 </dependency>
33 <dependency>
34 <groupId>edu.uci.ics.hyracks</groupId>
35 <artifactId>hyracks-test-support</artifactId>
zheilbron6ccde412013-03-26 23:48:15 +000036 <version>0.2.4-SNAPSHOT</version>
zheilbron5728a702013-03-04 18:43:03 +000037 <type>jar</type>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-data-std</artifactId>
zheilbron6ccde412013-03-26 23:48:15 +000043 <version>0.2.4-SNAPSHOT</version>
zheilbron5728a702013-03-04 18:43:03 +000044 <type>jar</type>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
48
49</project>