vinayakb | 72f96dd | 2010-08-30 05:29:10 +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</artifactId> |
| 5 | <version>0.1.2-SNAPSHOT</version> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>edu.uci.ics.hyracks</groupId> |
| 9 | <artifactId>hyracks</artifactId> |
| 10 | <version>0.1.2-SNAPSHOT</version> |
| 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>edu.uci.ics.hyracks</groupId> |
| 29 | <artifactId>hyracks-storage-common</artifactId> |
| 30 | <version>0.1.2-SNAPSHOT</version> |
| 31 | <type>jar</type> |
| 32 | <scope>compile</scope> |
alexander.behm | ddf73f5 | 2010-08-30 21:12:59 +0000 | [diff] [blame] | 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>edu.uci.ics.hyracks</groupId> |
| 36 | <artifactId>hyracks-dataflow-common</artifactId> |
| 37 | <version>0.1.2-SNAPSHOT</version> |
| 38 | <type>jar</type> |
| 39 | <scope>compile</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
alexander.behm | e507439 | 2010-09-02 00:32:04 +0000 | [diff] [blame] | 42 | <groupId>edu.uci.ics.hyracks</groupId> |
| 43 | <artifactId>hyracks-dataflow-std</artifactId> |
| 44 | <version>0.1.2-SNAPSHOT</version> |
| 45 | <type>jar</type> |
| 46 | <scope>compile</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
alexander.behm | 16dda7a | 2010-09-12 08:18:57 +0000 | [diff] [blame^] | 49 | <groupId>edu.uci.ics.hyracks</groupId> |
| 50 | <artifactId>hyracks-control-nc</artifactId> |
| 51 | <version>0.1.2-SNAPSHOT</version> |
| 52 | <type>jar</type> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
alexander.behm | ddf73f5 | 2010-08-30 21:12:59 +0000 | [diff] [blame] | 56 | <groupId>junit</groupId> |
| 57 | <artifactId>junit</artifactId> |
| 58 | <version>4.8.1</version> |
| 59 | <type>jar</type> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
vinayakb | 72f96dd | 2010-08-30 05:29:10 +0000 | [diff] [blame] | 62 | </dependencies> |
| 63 | </project> |