vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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/xsd/maven-4.0.0.xsd"> |
| 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-hyracks-glue</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> |
| 19 | <source>1.6</source> |
| 20 | <target>1.6</target> |
| 21 | </configuration> |
| 22 | </plugin> |
| 23 | </plugins> |
| 24 | </build> |
| 25 | <name>asterix-hyracks-glue</name> |
| 26 | <url>http://maven.apache.org</url> |
| 27 | <dependencies> |
| 28 | <dependency> |
| 29 | <groupId>junit</groupId> |
| 30 | <artifactId>junit</artifactId> |
| 31 | <version>3.8.1</version> |
| 32 | <scope>test</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 35 | <groupId>edu.uci.ics.asterix</groupId> |
| 36 | <artifactId>asterix-transactions</artifactId> |
| 37 | <version>0.0.4-SNAPSHOT</version> |
| 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
zheilbron | b9bb1c0 | 2012-05-06 23:48:05 +0000 | [diff] [blame] | 41 | <groupId>edu.uci.ics.asterix</groupId> |
| 42 | <artifactId>asterix-common</artifactId> |
| 43 | <version>0.0.4-SNAPSHOT</version> |
| 44 | <type>jar</type> |
| 45 | <scope>compile</scope> |
| 46 | </dependency> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 47 | </dependencies> |
| 48 | <properties> |
| 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 50 | </properties> |
| 51 | </project> |