blob: e28b2af3b293663314c89609bc3af6724ff49203 [file] [log] [blame]
vinayakb38b7ca42012-03-05 05:44:15 +00001<?xml version="1.0" encoding="UTF-8"?>
zheilbron5e741de2013-02-16 21:34:39 +00002<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.com153992b2013-03-05 22:22:14 +000022 <fork>true</fork>
zheilbron5e741de2013-02-16 21:34:39 +000023 </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>
vinayakb38b7ca42012-03-05 05:44:15 +000053</project>