blob: 1e51a04de2131e27419cb9ff0907ecc81c3141df [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>
6 <artifactId>hyracks-hdfs-core</artifactId>
buyingyi551f56c2013-02-14 08:31:21 +00007 <name>hyracks-hdfs-core</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>
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 <plugin>
39 <artifactId>maven-clean-plugin</artifactId>
40 <version>2.5</version>
41 <configuration>
42 <filesets>
43 <fileset>
44 <directory>.</directory>
45 <includes>
46 <include>edu*</include>
47 <include>actual*</include>
48 <include>build*</include>
49 <include>expect*</include>
50 <include>ClusterController*</include>
51 <include>edu.uci.*</include>
52 </includes>
53 </fileset>
54 </filesets>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59
60 <profiles>
61 <profile>
62 <activation>
63 <activeByDefault>true</activeByDefault>
64 </activation>
buyingyi28b719b2013-02-14 10:41:40 +000065 <id>hadoop-0.20.2</id>
buyingyi26ca36e2013-02-14 06:25:46 +000066 <dependencies>
67 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000068 <groupId>edu.uci.ics.hyracks</groupId>
69 <artifactId>hyracks-hdfs-0.20.2</artifactId>
70 <version>0.2.3-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +000071 <type>jar</type>
72 <scope>compile</scope>
73 </dependency>
74 </dependencies>
75 </profile>
76 <profile>
77 <activation>
78 <activeByDefault>false</activeByDefault>
79 </activation>
buyingyi28b719b2013-02-14 10:41:40 +000080 <id>hadoop-1.0.4</id>
81 <dependencies>
82 <dependency>
83 <groupId>edu.uci.ics.hyracks</groupId>
84 <artifactId>hyracks-hdfs-0.20.2</artifactId>
85 <version>0.2.3-SNAPSHOT</version>
86 <type>jar</type>
87 <scope>compile</scope>
88 </dependency>
89 </dependencies>
90 </profile>
91 <profile>
92 <activation>
93 <activeByDefault>false</activeByDefault>
94 </activation>
95 <id>hadoop-0.23.1</id>
96 <dependencies>
97 <dependency>
98 <groupId>edu.uci.ics.hyracks</groupId>
99 <artifactId>hyracks-hdfs-0.23.1</artifactId>
100 <version>0.2.3-SNAPSHOT</version>
101 <type>jar</type>
102 <scope>compile</scope>
103 </dependency>
104 </dependencies>
105 </profile>
106 <profile>
107 <activation>
108 <activeByDefault>false</activeByDefault>
109 </activation>
110 <id>hadoop-0.23.6</id>
buyingyi26ca36e2013-02-14 06:25:46 +0000111 <dependencies>
112 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +0000113 <groupId>edu.uci.ics.hyracks</groupId>
114 <artifactId>hyracks-hdfs-0.23.1</artifactId>
115 <version>0.2.3-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +0000116 <type>jar</type>
117 <scope>compile</scope>
118 </dependency>
119 </dependencies>
120 </profile>
121 </profiles>
122
123 <dependencies>
124 <dependency>
125 <groupId>junit</groupId>
126 <artifactId>junit</artifactId>
127 <version>3.8.1</version>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>edu.uci.ics.hyracks</groupId>
132 <artifactId>hyracks-api</artifactId>
133 <version>0.2.3-SNAPSHOT</version>
134 <scope>compile</scope>
135 </dependency>
136 <dependency>
137 <groupId>edu.uci.ics.hyracks</groupId>
138 <artifactId>hyracks-dataflow-std</artifactId>
139 <version>0.2.3-SNAPSHOT</version>
140 <scope>compile</scope>
141 </dependency>
142 <dependency>
143 <groupId>edu.uci.ics.hyracks</groupId>
144 <artifactId>hyracks-dataflow-common</artifactId>
145 <version>0.2.3-SNAPSHOT</version>
146 <scope>compile</scope>
147 </dependency>
148 <dependency>
149 <groupId>edu.uci.ics.hyracks</groupId>
150 <artifactId>hyracks-control-cc</artifactId>
151 <version>0.2.3-SNAPSHOT</version>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>edu.uci.ics.hyracks</groupId>
156 <artifactId>hyracks-control-nc</artifactId>
157 <version>0.2.3-SNAPSHOT</version>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>org.apache.commons</groupId>
162 <artifactId>commons-io</artifactId>
163 <version>1.3.2</version>
164 <scope>test</scope>
165 </dependency>
166 </dependencies>
167</project>