vinayakb | 74c7207 | 2011-01-06 23:41:16 +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 | <groupId>edu.uci.ics.hyracks</groupId> |
| 4 | <artifactId>hyracks-storage-am-btree-test</artifactId> |
vinayakb | caf7405 | 2011-06-18 19:41:01 +0000 | [diff] [blame] | 5 | <version>0.1.7-SNAPSHOT</version> |
vinayakb | 74c7207 | 2011-01-06 23:41:16 +0000 | [diff] [blame] | 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>hyracks-tests</artifactId> |
vinayakb | caf7405 | 2011-06-18 19:41:01 +0000 | [diff] [blame] | 10 | <version>0.1.7-SNAPSHOT</version> |
vinayakb | 74c7207 | 2011-01-06 23:41:16 +0000 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <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>junit</groupId> |
| 29 | <artifactId>junit</artifactId> |
| 30 | <version>4.8.1</version> |
| 31 | <type>jar</type> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>edu.uci.ics.hyracks</groupId> |
| 36 | <artifactId>hyracks-control-nc</artifactId> |
vinayakb | caf7405 | 2011-06-18 19:41:01 +0000 | [diff] [blame] | 37 | <version>0.1.7-SNAPSHOT</version> |
vinayakb | 74c7207 | 2011-01-06 23:41:16 +0000 | [diff] [blame] | 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>edu.uci.ics.hyracks</groupId> |
| 42 | <artifactId>hyracks-storage-am-btree</artifactId> |
vinayakb | caf7405 | 2011-06-18 19:41:01 +0000 | [diff] [blame] | 43 | <version>0.1.7-SNAPSHOT</version> |
vinayakb | 74c7207 | 2011-01-06 23:41:16 +0000 | [diff] [blame] | 44 | <type>jar</type> |
| 45 | <scope>compile</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>edu.uci.ics.hyracks</groupId> |
| 49 | <artifactId>hyracks-test-support</artifactId> |
vinayakb | caf7405 | 2011-06-18 19:41:01 +0000 | [diff] [blame] | 50 | <version>0.1.7-SNAPSHOT</version> |
vinayakb | 74c7207 | 2011-01-06 23:41:16 +0000 | [diff] [blame] | 51 | <type>jar</type> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | </project> |