blob: 9092655c872a590720055f3345afed3644865824 [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>
madhusudancs@gmail.com8c6dcbc2013-03-06 01:19:58 +000021 <source>1.7</source>
22 <target>1.7</target>
buyingyibc168c82013-03-02 08:38:44 +000023 <fork>true</fork>
buyingyi26ca36e2013-02-14 06:25:46 +000024 </configuration>
25 </plugin>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 <version>2.7.2</version>
30 <configuration>
31 <forkMode>pertest</forkMode>
32 <includes>
33 <include>**/*TestSuite.java</include>
34 <include>**/*Test.java</include>
35 </includes>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
buyingyi551f56c2013-02-14 08:31:21 +000040
buyingyi28b719b2013-02-14 10:41:40 +000041 <profiles>
42 <profile>
43 <activation>
44 <activeByDefault>true</activeByDefault>
45 </activation>
46 <id>hadoop-0.20.2</id>
47 <dependencies>
48 <dependency>
49 <groupId>org.apache.hadoop</groupId>
50 <artifactId>hadoop-core</artifactId>
51 <version>0.20.2</version>
52 <type>jar</type>
53 <scope>compile</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.apache.hadoop</groupId>
57 <artifactId>hadoop-test</artifactId>
58 <version>0.20.2</version>
59 <type>jar</type>
60 <scope>compile</scope>
61 </dependency>
62 </dependencies>
63 </profile>
64 <profile>
65 <activation>
66 <activeByDefault>false</activeByDefault>
buyingyi6ee07d72013-03-08 06:16:02 +000067 <property>
68 <name>hadoop</name>
69 <value>1.0.4</value>
70 </property>
buyingyi28b719b2013-02-14 10:41:40 +000071 </activation>
72 <id>hadoop-1.0.4</id>
73 <dependencies>
74 <dependency>
75 <groupId>org.apache.hadoop</groupId>
76 <artifactId>hadoop-core</artifactId>
77 <version>1.0.4</version>
78 <type>jar</type>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.hadoop</groupId>
83 <artifactId>hadoop-minicluster</artifactId>
84 <version>1.0.4</version>
85 <type>jar</type>
86 <scope>compile</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.hadoop</groupId>
90 <artifactId>hadoop-test</artifactId>
91 <version>1.0.4</version>
92 <type>jar</type>
93 <scope>compile</scope>
94 </dependency>
95 </dependencies>
96 </profile>
97 </profiles>
98
buyingyi551f56c2013-02-14 08:31:21 +000099 <dependencies>
100 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +0000101 <groupId>edu.uci.ics.hyracks</groupId>
102 <artifactId>hyracks-api</artifactId>
103 <version>0.2.3-SNAPSHOT</version>
104 <type>jar</type>
105 <scope>compile</scope>
106 </dependency>
107 </dependencies>
buyingyi26ca36e2013-02-14 06:25:46 +0000108</project>