blob: fa7c7bbd2298747164f235b0dcb401556472abc7 [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>
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 <plugin>
38 <artifactId>maven-clean-plugin</artifactId>
39 <version>2.5</version>
40 <configuration>
41 <filesets>
42 <fileset>
43 <directory>.</directory>
44 <includes>
45 <include>edu*</include>
46 <include>actual*</include>
47 <include>build*</include>
48 <include>expect*</include>
49 <include>ClusterController*</include>
50 <include>edu.uci.*</include>
51 </includes>
52 </fileset>
53 </filesets>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58
59 <profiles>
60 <profile>
61 <activation>
62 <activeByDefault>true</activeByDefault>
63 </activation>
64 <dependencies>
65 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000066 <groupId>edu.uci.ics.hyracks</groupId>
67 <artifactId>hyracks-hdfs-0.20.2</artifactId>
68 <version>0.2.3-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +000069 <type>jar</type>
70 <scope>compile</scope>
71 </dependency>
72 </dependencies>
73 </profile>
74 <profile>
75 <activation>
76 <activeByDefault>false</activeByDefault>
77 </activation>
78 <id>hadoop-0.22.0</id>
79 <dependencies>
80 <dependency>
buyingyi551f56c2013-02-14 08:31:21 +000081 <groupId>edu.uci.ics.hyracks</groupId>
82 <artifactId>hyracks-hdfs-0.23.1</artifactId>
83 <version>0.2.3-SNAPSHOT</version>
buyingyi26ca36e2013-02-14 06:25:46 +000084 <type>jar</type>
85 <scope>compile</scope>
86 </dependency>
87 </dependencies>
88 </profile>
89 </profiles>
90
91 <dependencies>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>3.8.1</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>edu.uci.ics.hyracks</groupId>
100 <artifactId>hyracks-api</artifactId>
101 <version>0.2.3-SNAPSHOT</version>
102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>edu.uci.ics.hyracks</groupId>
106 <artifactId>hyracks-dataflow-std</artifactId>
107 <version>0.2.3-SNAPSHOT</version>
108 <scope>compile</scope>
109 </dependency>
110 <dependency>
111 <groupId>edu.uci.ics.hyracks</groupId>
112 <artifactId>hyracks-dataflow-common</artifactId>
113 <version>0.2.3-SNAPSHOT</version>
114 <scope>compile</scope>
115 </dependency>
116 <dependency>
117 <groupId>edu.uci.ics.hyracks</groupId>
118 <artifactId>hyracks-control-cc</artifactId>
119 <version>0.2.3-SNAPSHOT</version>
120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>edu.uci.ics.hyracks</groupId>
124 <artifactId>hyracks-control-nc</artifactId>
125 <version>0.2.3-SNAPSHOT</version>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.commons</groupId>
130 <artifactId>commons-io</artifactId>
131 <version>1.3.2</version>
132 <scope>test</scope>
133 </dependency>
134 </dependencies>
135</project>