blob: 1a18d1c2244a9943c329cb58aa230209faad86c1 [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>
22 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26 <name>asterix-hyracks-glue</name>
27 <url>http://maven.apache.org</url>
28 <dependencies>
29 <dependency>
30 <groupId>junit</groupId>
31 <artifactId>junit</artifactId>
32 <version>3.8.1</version>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>edu.uci.ics.asterix</groupId>
37 <artifactId>asterix-transactions</artifactId>
38 <version>0.0.4-SNAPSHOT</version>
39 <scope>compile</scope>
40 </dependency>
41 <dependency>
42 <groupId>edu.uci.ics.asterix</groupId>
43 <artifactId>asterix-common</artifactId>
44 <version>0.0.4-SNAPSHOT</version>
45 <type>jar</type>
46 <scope>compile</scope>
47 </dependency>
48 </dependencies>
49 <properties>
50 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51 </properties>
vinayakb38b7ca42012-03-05 05:44:15 +000052</project>