blob: c28b3a248cf791ea72a8b9a2940869e099abe3b2 [file] [log] [blame]
buyingyi26ca36e2013-02-14 06:25:46 +00001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
buyingyi551f56c2013-02-14 08:31:21 +00006 <artifactId>hyracks-hdfs-0.23.1</artifactId>
buyingyi9173e202013-02-14 10:51:04 +00007 <name>hyracks-hdfs-0.23.1</name>
buyingyi26ca36e2013-02-14 06:25:46 +00008 <parent>
9 <artifactId>hyracks-hdfs</artifactId>
10 <groupId>edu.uci.ics.hyracks</groupId>
11 <version>0.2.3-SNAPSHOT</version>
12 </parent>
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.6</source>
21 <target>1.6</target>
buyingyibc168c82013-03-02 08:38:44 +000022 <fork>true</fork>
buyingyi26ca36e2013-02-14 06:25:46 +000023 </configuration>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-surefire-plugin</artifactId>
28 <version>2.7.2</version>
29 <configuration>
30 <forkMode>pertest</forkMode>
31 <includes>
32 <include>**/*TestSuite.java</include>
33 <include>**/*Test.java</include>
34 </includes>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
buyingyi551f56c2013-02-14 08:31:21 +000039
buyingyi28b719b2013-02-14 10:41:40 +000040 <profiles>
41 <profile>
42 <activation>
43 <activeByDefault>true</activeByDefault>
44 </activation>
45 <id>hadoop-0.23.1</id>
46 <dependencies>
47 <dependency>
48 <groupId>org.apache.hadoop</groupId>
49 <artifactId>hadoop-common</artifactId>
50 <version>0.23.1</version>
51 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.hadoop</groupId>
56 <artifactId>hadoop-mapreduce-client-core</artifactId>
57 <version>0.23.1</version>
58 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.hadoop</groupId>
63 <artifactId>hadoop-hdfs</artifactId>
64 <version>0.23.1</version>
65 <type>jar</type>
66 <scope>compile</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.hadoop</groupId>
70 <artifactId>hadoop-minicluster</artifactId>
71 <version>0.23.1</version>
72 <type>jar</type>
73 <scope>compile</scope>
74 </dependency>
75 </dependencies>
76 </profile>
77 <profile>
78 <id>hadoop-0.23.6</id>
79 <activation>
80 <activeByDefault>false</activeByDefault>
81 </activation>
82 <dependencies>
83 <dependency>
84 <groupId>org.apache.hadoop</groupId>
85 <artifactId>hadoop-common</artifactId>
86 <version>0.23.6</version>
87 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.apache.hadoop</groupId>
92 <artifactId>hadoop-mapreduce-client-core</artifactId>
93 <version>0.23.6</version>
94 <type>jar</type>
95 <scope>compile</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.hadoop</groupId>
99 <artifactId>hadoop-hdfs</artifactId>
100 <version>0.23.6</version>
101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.apache.hadoop</groupId>
106 <artifactId>hadoop-minicluster</artifactId>
107 <version>0.23.6</version>
108 <type>jar</type>
109 <scope>compile</scope>
110 </dependency>
111 </dependencies>
112 </profile>
113 </profiles>
114
buyingyi551f56c2013-02-14 08:31:21 +0000115 <dependencies>
116 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +0000117 <groupId>edu.uci.ics.hyracks</groupId>
118 <artifactId>hyracks-api</artifactId>
119 <version>0.2.3-SNAPSHOT</version>
120 <type>jar</type>
121 <scope>compile</scope>
122 </dependency>
123 </dependencies>
buyingyi26ca36e2013-02-14 06:25:46 +0000124</project>