blob: 1edd32e48dba3ca032804d2e55d82a45e55001c2 [file] [log] [blame]
zheilbronc5441952012-10-02 05:00:15 +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">
alexander.behm7cb41db2012-08-09 20:28:06 +00002 <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>
zheilbrond974a5b2012-10-02 02:01:06 +00008 <version>0.2.2-SNAPSHOT</version>
alexander.behm7cb41db2012-08-09 20:28:06 +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.6</source>
20 <target>1.6</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>
zheilbrond974a5b2012-10-02 02:01:06 +000029 <version>0.2.2-SNAPSHOT</version>
alexander.behm7cb41db2012-08-09 20:28:06 +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>
zheilbrond974a5b2012-10-02 02:01:06 +000036 <version>0.2.2-SNAPSHOT</version>
alexander.behm7cb41db2012-08-09 20:28:06 +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>
zheilbrond974a5b2012-10-02 02:01:06 +000043 <version>0.2.2-SNAPSHOT</version>
alexander.behm7cb41db2012-08-09 20:28:06 +000044 <type>jar</type>
45 <scope>test</scope>
46 </dependency>
47 </dependencies>
48
49</project>