blob: e74d610f2162f9daaec26ac7f292639955e9250c [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.20.2</artifactId>
7 <name>hyracks-hdfs-0.20.2</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
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <version>2.0.2</version>
20 <configuration>
21 <source>1.6</source>
22 <target>1.6</target>
23 </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.20.2</id>
46 <dependencies>
47 <dependency>
48 <groupId>org.apache.hadoop</groupId>
49 <artifactId>hadoop-core</artifactId>
50 <version>0.20.2</version>
51 <type>jar</type>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.apache.hadoop</groupId>
56 <artifactId>hadoop-test</artifactId>
57 <version>0.20.2</version>
58 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61 </dependencies>
62 </profile>
63 <profile>
64 <activation>
65 <activeByDefault>false</activeByDefault>
66 </activation>
67 <id>hadoop-1.0.4</id>
68 <dependencies>
69 <dependency>
70 <groupId>org.apache.hadoop</groupId>
71 <artifactId>hadoop-core</artifactId>
72 <version>1.0.4</version>
73 <type>jar</type>
74 <scope>compile</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.hadoop</groupId>
78 <artifactId>hadoop-minicluster</artifactId>
79 <version>1.0.4</version>
80 <type>jar</type>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.apache.hadoop</groupId>
85 <artifactId>hadoop-test</artifactId>
86 <version>1.0.4</version>
87 <type>jar</type>
88 <scope>compile</scope>
89 </dependency>
90 </dependencies>
91 </profile>
92 </profiles>
93
buyingyi551f56c2013-02-14 08:31:21 +000094 <dependencies>
95 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000096 <groupId>edu.uci.ics.hyracks</groupId>
97 <artifactId>hyracks-api</artifactId>
98 <version>0.2.3-SNAPSHOT</version>
99 <type>jar</type>
100 <scope>compile</scope>
101 </dependency>
102 </dependencies>
buyingyi26ca36e2013-02-14 06:25:46 +0000103</project>