blob: e3b95c6f896dc260c8eb9d30751cc982db67dc1a [file] [log] [blame]
vinayakb0c860392012-10-06 18:47:20 +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-dataflow-std</artifactId>
5 <version>0.2.2-SNAPSHOT</version>
buyingyi8d79d162012-10-22 23:04:47 +00006 <name>hyracks-dataflow-std</name>
vinayakb0c860392012-10-06 18:47:20 +00007
8 <parent>
9 <groupId>edu.uci.ics.hyracks</groupId>
10 <artifactId>hyracks</artifactId>
11 <version>0.2.2-SNAPSHOT</version>
12 </parent>
13
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </configuration>
24 </plugin>
25 </plugins>
26 </build>
27 <dependencies>
28 <dependency>
29 <groupId>edu.uci.ics.hyracks</groupId>
30 <artifactId>hyracks-api</artifactId>
31 <version>0.2.2-SNAPSHOT</version>
32 <type>jar</type>
33 <scope>compile</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.hyracks</groupId>
37 <artifactId>hyracks-dataflow-common</artifactId>
38 <version>0.2.2-SNAPSHOT</version>
39 <type>jar</type>
40 <scope>compile</scope>
41 </dependency>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>4.8.2</version>
46 <type>jar</type>
47 <scope>test</scope>
48 </dependency>
49 </dependencies>
50</project>