blob: eb897d5a8ffeb0fb239b94c71078f558e5c76d2f [file] [log] [blame]
alexander.behm940c8e12011-03-04 05:01:31 +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-common</artifactId>
5 <version>0.1.4</version>
6
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks</artifactId>
10 <version>0.1.4</version>
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-api</artifactId>
30 <version>0.1.4</version>
31 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-storage-common</artifactId>
37 <version>0.1.4</version>
38 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
alexander.behm0295f942011-03-05 00:57:34 +000041 <dependency>
42 <groupId>edu.uci.ics.hyracks</groupId>
43 <artifactId>hyracks-dataflow-common</artifactId>
44 <version>0.1.4</version>
45 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
alexander.behm940c8e12011-03-04 05:01:31 +000048 </dependencies>
49</project>