vinayakb | 007deee | 2011-12-23 20:53:41 +0000 | [diff] [blame] | 1 | <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> |
zheilbron | e74da94 | 2012-04-05 21:43:52 +0000 | [diff] [blame] | 7 | <version>0.2.1-SNAPSHOT</version> |
vinayakb | 007deee | 2011-12-23 20:53:41 +0000 | [diff] [blame] | 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> |