blob: e87969b6474b30dbbf92e4ec2a9f4a5582d727fa [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 <artifactId>hyracks-ipc</artifactId>
4 <parent>
5 <groupId>edu.uci.ics.hyracks</groupId>
6 <artifactId>hyracks</artifactId>
7 <version>0.2.2-SNAPSHOT</version>
8 </parent>
9
10 <build>
11 <plugins>
12 <plugin>
13 <groupId>org.apache.maven.plugins</groupId>
14 <artifactId>maven-compiler-plugin</artifactId>
15 <version>2.0.2</version>
16 <configuration>
17 <source>1.6</source>
18 <target>1.6</target>
19 </configuration>
20 </plugin>
21 </plugins>
22 </build>
23 <dependencies>
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <version>4.8.1</version>
28 <scope>test</scope>
29 </dependency>
30 </dependencies>
31</project>