zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame^] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <artifactId>asterix</artifactId> |
| 6 | <groupId>edu.uci.ics.asterix</groupId> |
| 7 | <version>0.0.4-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <groupId>edu.uci.ics.asterix</groupId> |
| 10 | <artifactId>asterix-common</artifactId> |
| 11 | <version>0.0.4-SNAPSHOT</version> |
| 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <version>2.0.2</version> |
| 18 | <configuration> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame^] | 19 | <source>1.7</source> |
| 20 | <target>1.7</target> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 21 | </configuration> |
| 22 | </plugin> |
| 23 | </plugins> |
| 24 | </build> |
| 25 | |
| 26 | <dependencies> |
| 27 | <dependency> |
| 28 | <groupId>edu.uci.ics.hyracks</groupId> |
vinayakb | ba4abf6 | 2013-02-01 01:19:43 +0000 | [diff] [blame] | 29 | <artifactId>algebricks-compiler</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>edu.uci.ics.hyracks</groupId> |
| 33 | <artifactId>hyracks-dataflow-std</artifactId> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 34 | </dependency> |
zheilbron | b9bb1c0 | 2012-05-06 23:48:05 +0000 | [diff] [blame] | 35 | <dependency> |
| 36 | <groupId>edu.uci.ics.asterix</groupId> |
| 37 | <artifactId>asterix-transactions</artifactId> |
| 38 | <version>0.0.4-SNAPSHOT</version> |
| 39 | <type>jar</type> |
| 40 | <scope>compile</scope> |
| 41 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 42 | </dependencies> |
| 43 | |
| 44 | </project> |
| 45 | |