blob: c708b0d130ac0872e8f3e255b6b1d3e08aa2eb4f [file] [log] [blame]
buyingyi26ca36e2013-02-14 06:25:46 +00001<?xml version="1.0"?>
buyingyia7ee7572013-03-25 07:37:09 +00002<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/xsd/maven-4.0.0.xsd">
buyingyi26ca36e2013-02-14 06:25:46 +00003 <modelVersion>4.0.0</modelVersion>
buyingyi551f56c2013-02-14 08:31:21 +00004 <artifactId>hyracks-hdfs-0.20.2</artifactId>
5 <name>hyracks-hdfs-0.20.2</name>
buyingyi26ca36e2013-02-14 06:25:46 +00006 <parent>
7 <artifactId>hyracks-hdfs</artifactId>
8 <groupId>edu.uci.ics.hyracks</groupId>
buyingyia7ee7572013-03-25 07:37:09 +00009 <version>0.2.4-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +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>
madhusudancs@gmail.com8c6dcbc2013-03-06 01:19:58 +000019 <source>1.7</source>
20 <target>1.7</target>
buyingyibc168c82013-03-02 08:38:44 +000021 <fork>true</fork>
buyingyi26ca36e2013-02-14 06:25:46 +000022 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.maven.plugins</groupId>
26 <artifactId>maven-surefire-plugin</artifactId>
27 <version>2.7.2</version>
28 <configuration>
29 <forkMode>pertest</forkMode>
30 <includes>
31 <include>**/*TestSuite.java</include>
32 <include>**/*Test.java</include>
33 </includes>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
buyingyi551f56c2013-02-14 08:31:21 +000038
buyingyi28b719b2013-02-14 10:41:40 +000039 <profiles>
40 <profile>
41 <activation>
42 <activeByDefault>true</activeByDefault>
43 </activation>
44 <id>hadoop-0.20.2</id>
45 <dependencies>
46 <dependency>
47 <groupId>org.apache.hadoop</groupId>
48 <artifactId>hadoop-core</artifactId>
49 <version>0.20.2</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.hadoop</groupId>
55 <artifactId>hadoop-test</artifactId>
56 <version>0.20.2</version>
57 <type>jar</type>
58 <scope>compile</scope>
59 </dependency>
60 </dependencies>
61 </profile>
62 <profile>
63 <activation>
64 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000065 <property>
66 <name>hadoop</name>
67 <value>1.0.4</value>
68 </property>
buyingyi28b719b2013-02-14 10:41:40 +000069 </activation>
70 <id>hadoop-1.0.4</id>
71 <dependencies>
72 <dependency>
73 <groupId>org.apache.hadoop</groupId>
74 <artifactId>hadoop-core</artifactId>
75 <version>1.0.4</version>
76 <type>jar</type>
77 <scope>compile</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.hadoop</groupId>
81 <artifactId>hadoop-minicluster</artifactId>
82 <version>1.0.4</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.hadoop</groupId>
88 <artifactId>hadoop-test</artifactId>
89 <version>1.0.4</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 </dependencies>
94 </profile>
95 </profiles>
96
buyingyi551f56c2013-02-14 08:31:21 +000097 <dependencies>
98 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000099 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-api</artifactId>
buyingyia7ee7572013-03-25 07:37:09 +0000101 <version>0.2.4-SNAPSHOT</version>
buyingyi551f56c2013-02-14 08:31:21 +0000102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 </dependencies>
buyingyi26ca36e2013-02-14 06:25:46 +0000106</project>