blob: e6fc37941d7e8104b4363c907b227465a0b69c0f [file] [log] [blame]
vinayakb59d505d2012-10-29 10:38:02 +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>
vinayakb59d505d2012-10-29 10:38:02 +00003 <artifactId>hyracks-storage-common-test</artifactId>
vinayakb59d505d2012-10-29 10:38:02 +00004 <name>hyracks-storage-common-test</name>
5
6 <parent>
7 <groupId>edu.uci.ics.hyracks</groupId>
8 <artifactId>hyracks-tests</artifactId>
vinayakba81424a2013-04-06 19:21:13 +00009 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000010 </parent>
11
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>
buyingyi5df938f2013-03-24 07:20:08 +000019 <source>1.7</source>
20 <target>1.7</target>
21 <fork>true</fork>
vinayakb59d505d2012-10-29 10:38:02 +000022 </configuration>
23 </plugin>
24 </plugins>
25 </build>
26 <dependencies>
27 <dependency>
28 <groupId>junit</groupId>
29 <artifactId>junit</artifactId>
30 <version>4.8.1</version>
31 <type>jar</type>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>edu.uci.ics.hyracks</groupId>
36 <artifactId>hyracks-storage-common</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000037 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000038 <scope>compile</scope>
39 </dependency>
40 <dependency>
41 <groupId>edu.uci.ics.hyracks</groupId>
42 <artifactId>hyracks-test-support</artifactId>
vinayakba81424a2013-04-06 19:21:13 +000043 <version>0.2.4</version>
vinayakb59d505d2012-10-29 10:38:02 +000044 <type>jar</type>
45 <scope>compile</scope>
46 </dependency>
47 </dependencies>
48</project>