vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <artifactId>asterix</artifactId> |
| 7 | <groupId>edu.uci.ics.asterix</groupId> |
| 8 | <version>0.0.4-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | <groupId>edu.uci.ics.asterix</groupId> |
| 11 | <artifactId>asterix-hyracks-glue</artifactId> |
| 12 | <version>0.0.4-SNAPSHOT</version> |
| 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.7</source> |
| 21 | <target>1.7</target> |
madhusudancs@gmail.com | 153992b | 2013-03-05 22:22:14 +0000 | [diff] [blame] | 22 | <fork>true</fork> |
zheilbron | 5e741de | 2013-02-16 21:34:39 +0000 | [diff] [blame] | 23 | </configuration> |
| 24 | </plugin> |
| 25 | </plugins> |
| 26 | </build> |
| 27 | <name>asterix-hyracks-glue</name> |
| 28 | <url>http://maven.apache.org</url> |
| 29 | <dependencies> |
| 30 | <dependency> |
| 31 | <groupId>junit</groupId> |
| 32 | <artifactId>junit</artifactId> |
| 33 | <version>3.8.1</version> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>edu.uci.ics.asterix</groupId> |
| 38 | <artifactId>asterix-transactions</artifactId> |
| 39 | <version>0.0.4-SNAPSHOT</version> |
| 40 | <scope>compile</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>edu.uci.ics.asterix</groupId> |
| 44 | <artifactId>asterix-common</artifactId> |
| 45 | <version>0.0.4-SNAPSHOT</version> |
| 46 | <type>jar</type> |
| 47 | <scope>compile</scope> |
| 48 | </dependency> |
| 49 | </dependencies> |
| 50 | <properties> |
| 51 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 52 | </properties> |
vinayakb | 38b7ca4 | 2012-03-05 05:44:15 +0000 | [diff] [blame] | 53 | </project> |