blob: 14b9ec757054a1ac27fac25ca08c262d375c4203 [file] [log] [blame]
vinayakbc8d86de2010-08-12 22:25:49 +00001<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/maven-v4_0_0.xsd">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>edu.uci.ics.hyracks.examples.tpch</groupId>
4 <artifactId>tpchhelper</artifactId>
5 <version>0.0.1</version>
6 <dependencies>
7 <dependency>
8 <groupId>edu.uci.ics.hyracks</groupId>
9 <artifactId>hyracks-dataflow-std</artifactId>
10 <version>0.1.0</version>
11 <scope>compile</scope>
12 </dependency>
13 <dependency>
14 <groupId>edu.uci.ics.hyracks</groupId>
15 <artifactId>hyracks-api</artifactId>
16 <version>0.1.0</version>
17 <scope>compile</scope>
18 </dependency>
19 </dependencies>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-compiler-plugin</artifactId>
25 <version>2.0.2</version>
26 <configuration>
27 <source>1.6</source>
28 <target>1.6</target>
29 </configuration>
30 </plugin>
31 </plugins>
32 </build>
33</project>