blob: 8541a920f0ee3acde06e90b1c2a6f18c410ad5b4 [file] [log] [blame]
alexander.behm7cb41db2012-08-09 20:28:06 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <artifactId>hyracks-storage-am-lsm-invertedindex-test</artifactId>
5
6 <parent>
7 <artifactId>hyracks-tests</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <version>0.2.1-SNAPSHOT</version>
10 <relativePath>..</relativePath>
11 </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>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>edu.uci.ics.hyracks</groupId>
29 <artifactId>hyracks-storage-am-lsm-invertedindex</artifactId>
30 <version>0.2.1-SNAPSHOT</version>
31 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-test-support</artifactId>
37 <version>0.2.1-SNAPSHOT</version>
38 <type>jar</type>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-data-std</artifactId>
44 <version>0.2.1-SNAPSHOT</version>
45 <type>jar</type>
46 <scope>test</scope>
47 </dependency>
48 </dependencies>
49
50</project>