blob: 747e657e61b9258cde729ac12d20c2639cd1bf48 [file] [log] [blame]
vinayakb847471c2010-07-29 22:41:55 +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>
alexander.behm0d161a02011-05-21 16:55:42 +00005 <version>0.1.5</version>
vinayakb28cc83e2010-08-19 21:44:21 +00006
7 <parent>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks</artifactId>
alexander.behm0d161a02011-05-21 16:55:42 +000010 <version>0.1.5</version>
vinayakb28cc83e2010-08-19 21:44:21 +000011 </parent>
12
vinayakb847471c2010-07-29 22:41:55 +000013 <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>
alexander.behm0d161a02011-05-21 16:55:42 +000030 <version>0.1.5</version>
vinayakb847471c2010-07-29 22:41:55 +000031 <type>jar</type>
32 <scope>compile</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-dataflow-common</artifactId>
alexander.behm0d161a02011-05-21 16:55:42 +000037 <version>0.1.5</version>
vinayakb847471c2010-07-29 22:41:55 +000038 <type>jar</type>
39 <scope>compile</scope>
40 </dependency>
vinayakb424e1ae2010-10-19 08:56:13 +000041 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>4.8.2</version>
45 <type>jar</type>
46 <scope>test</scope>
47 </dependency>
vinayakb847471c2010-07-29 22:41:55 +000048 </dependencies>
49</project>