vinayakb | 0c86039 | 2012-10-06 18:47:20 +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-control-nc</artifactId> |
| 4 | <parent> |
| 5 | <groupId>edu.uci.ics.hyracks</groupId> |
| 6 | <artifactId>hyracks-control</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>edu.uci.ics.dcache</groupId> |
| 26 | <artifactId>dcache-client</artifactId> |
| 27 | <version>0.0.1</version> |
| 28 | <scope>compile</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>edu.uci.ics.hyracks</groupId> |
| 32 | <artifactId>hyracks-control-common</artifactId> |
| 33 | <version>0.2.2-SNAPSHOT</version> |
| 34 | <type>jar</type> |
| 35 | <scope>compile</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>edu.uci.ics.hyracks</groupId> |
| 39 | <artifactId>hyracks-net</artifactId> |
| 40 | <version>0.2.2-SNAPSHOT</version> |
| 41 | </dependency> |
| 42 | </dependencies> |
| 43 | <reporting> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <groupId>org.codehaus.mojo</groupId> |
| 47 | <artifactId>findbugs-maven-plugin</artifactId> |
| 48 | <version>2.0.1</version> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </reporting> |
| 52 | </project> |