blob: 6dd822ba74ae476241ea25d99e180d1bbc4f4c58 [file] [log] [blame]
Till Westmann276bbc22013-06-05 18:56:27 -07001<!--
Ian Maxond8857792015-09-11 14:19:53 -07002 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
7 ! "License"); you may not use this file except in compliance
8 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
Till Westmann276bbc22013-06-05 18:56:27 -070018 !-->
Ian Maxond8857792015-09-11 14:19:53 -070019
buyingyi55df5212013-03-24 07:20:08 +000020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22 <artifactId>hyracks-hdfs</artifactId>
buyingyi55df5212013-03-24 07:20:08 +000023 <name>hyracks-hdfs</name>
24
25 <parent>
Ian Maxone915e8c2015-07-01 17:03:31 -070026 <groupId>org.apache.hyracks</groupId>
buyingyi55df5212013-03-24 07:20:08 +000027 <artifactId>hyracks</artifactId>
Ian Maxon4f3e48f2023-03-14 20:12:58 -070028 <version>0.3.9-SNAPSHOT</version>
buyingyi55df5212013-03-24 07:20:08 +000029 </parent>
30
Ian Maxon9e37c962015-11-25 07:38:37 -080031 <properties>
Michael Blowb4c1fb02016-05-09 15:41:00 -070032 <root.dir>${basedir}/../..</root.dir>
Ian Maxon9e37c962015-11-25 07:38:37 -080033 </properties>
34
Iane82f8112014-11-19 12:31:18 -080035 <licenses>
36 <license>
37 <name>Apache License, Version 2.0</name>
38 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39 <distribution>repo</distribution>
40 <comments>A business-friendly OSS license</comments>
41 </license>
42 </licenses>
43
Michael Blow2d90c0c2018-06-16 08:59:54 -040044 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-jar-plugin</artifactId>
49 <executions>
50 <execution>
51 <goals>
52 <goal>test-jar</goal>
53 </goals>
54 </execution>
55 </executions>
56 </plugin>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-dependency-plugin</artifactId>
60 <configuration>
61 <failOnWarning>true</failOnWarning>
62 <outputXML>true</outputXML>
Ian Maxon4a20fb22020-06-08 17:23:07 -070063 <ignoredDependencies>
64 <ignoredDependency>org.apache.hadoop:hadoop*::</ignoredDependency>
65 <ignoredDependency>org.apache.logging.log4j:log4j*::</ignoredDependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -070066 <ignoredDependency>org.slf4j:slf4j*::</ignoredDependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -070067 </ignoredDependencies>
Michael Blow2d90c0c2018-06-16 08:59:54 -040068 </configuration>
69 <executions>
70 <execution>
71 <phase>process-test-classes</phase>
72 <goals>
73 <goal>analyze-only</goal>
74 </goals>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.rat</groupId>
80 <artifactId>apache-rat-plugin</artifactId>
81 <configuration>
82 <excludes combine.children="append">
83 <exclude>src/test/resources/data/customer.tbl</exclude>
84 <exclude>src/test/resources/expected/part-0</exclude>
85 </excludes>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.hyracks</groupId>
94 <artifactId>hyracks-control-common</artifactId>
95 <version>${project.version}</version>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.hadoop</groupId>
100 <artifactId>hadoop-common</artifactId>
101 <exclusions>
102 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300103 <groupId>com.nimbusds</groupId>
104 <artifactId>nimbus-jose-jwt</artifactId>
105 </exclusion>
106 <exclusion>
hariuserxf6d772c2023-05-03 11:13:24 -0700107 <groupId>org.apache.avro</groupId>
108 <artifactId>avro</artifactId>
109 </exclusion>
110 <exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400111 <groupId>javax.servlet.jsp</groupId>
112 <artifactId>jsp-api</artifactId>
113 </exclusion>
114 <exclusion>
115 <groupId>javax.servlet</groupId>
116 <artifactId>servlet-api</artifactId>
117 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700118 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500119 <groupId>org.slf4j</groupId>
120 <artifactId>slf4j-reload4j</artifactId>
121 </exclusion>
122 <exclusion>
123 <groupId>ch.qos.reload4j</groupId>
124 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700125 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400126 </exclusions>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.hadoop</groupId>
130 <artifactId>hadoop-mapreduce-client-core</artifactId>
131 <exclusions>
132 <exclusion>
hariuserxf6d772c2023-05-03 11:13:24 -0700133 <groupId>org.apache.avro</groupId>
134 <artifactId>avro</artifactId>
135 </exclusion>
136 <exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400137 <groupId>com.sun.jersey.jersey-test-framework</groupId>
138 <artifactId>jersey-test-framework-grizzly2</artifactId>
139 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700140 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500141 <groupId>org.slf4j</groupId>
142 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700143 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700144 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500145 <groupId>ch.qos.reload4j</groupId>
146 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700147 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400148 </exclusions>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hadoop</groupId>
152 <artifactId>hadoop-hdfs</artifactId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400153 <version>${hadoop.version}</version>
154 <type>test-jar</type>
155 <classifier>tests</classifier>
156 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700157 <exclusions>
158 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500159 <groupId>io.netty</groupId>
160 <artifactId>netty-all</artifactId>
161 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500162 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500163 <groupId>org.slf4j</groupId>
164 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700165 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700166 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500167 <groupId>ch.qos.reload4j</groupId>
168 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700169 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300170 <!-- TODO(htowaileb): Remove after updating to hadoop 3.3.4 -->
171 <exclusion>
172 <groupId>org.eclipse.jetty</groupId>
173 <artifactId>jetty-util</artifactId>
174 </exclusion>
175 <exclusion>
176 <groupId>org.eclipse.jetty</groupId>
177 <artifactId>jetty-util-ajax</artifactId>
178 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700179 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400180 </dependency>
181 <dependency>
182 <groupId>org.apache.hadoop</groupId>
183 <artifactId>hadoop-common</artifactId>
184 <version>${hadoop.version}</version>
185 <type>test-jar</type>
186 <classifier>tests</classifier>
187 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700188 <exclusions>
189 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500190 <groupId>org.slf4j</groupId>
191 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700192 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700193 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500194 <groupId>ch.qos.reload4j</groupId>
195 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700196 </exclusion>
Hussain Towaileb359e5c22022-08-01 06:46:31 +0300197 <!-- TODO(htowaileb): Remove after updating to hadoop 3.3.4 -->
198 <exclusion>
199 <groupId>org.eclipse.jetty</groupId>
200 <artifactId>jetty-util</artifactId>
201 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700202 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400203 </dependency>
204 <dependency>
205 <groupId>junit</groupId>
206 <artifactId>junit</artifactId>
207 <scope>test</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hyracks</groupId>
211 <artifactId>hyracks-api</artifactId>
212 <version>${project.version}</version>
213 <scope>compile</scope>
214 </dependency>
215 <dependency>
216 <groupId>org.apache.hyracks</groupId>
217 <artifactId>hyracks-dataflow-std</artifactId>
218 <version>${project.version}</version>
219 <scope>compile</scope>
220 </dependency>
221 <dependency>
222 <groupId>org.apache.hyracks</groupId>
223 <artifactId>hyracks-dataflow-common</artifactId>
224 <version>${project.version}</version>
225 <scope>compile</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.hyracks</groupId>
229 <artifactId>hyracks-control-cc</artifactId>
230 <version>${project.version}</version>
231 <scope>test</scope>
232 </dependency>
233 <dependency>
234 <groupId>org.apache.hyracks</groupId>
235 <artifactId>hyracks-control-nc</artifactId>
236 <version>${project.version}</version>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400240 <groupId>org.apache.hyracks</groupId>
241 <artifactId>hyracks-test-support</artifactId>
242 <version>${project.version}</version>
243 <scope>test</scope>
244 </dependency>
245 <dependency>
246 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300247 <artifactId>hyracks-ipc</artifactId>
248 <version>${project.version}</version>
249 </dependency>
250 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400251 <groupId>org.apache.logging.log4j</groupId>
252 <artifactId>log4j-api</artifactId>
253 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400254 <dependency>
255 <groupId>xml-apis</groupId>
256 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500257 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400258 <scope>test</scope>
259 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700260 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700261 <groupId>org.slf4j</groupId>
262 <artifactId>slf4j-simple</artifactId>
263 <scope>test</scope>
264 </dependency>
265 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700266 <groupId>org.apache.logging.log4j</groupId>
267 <artifactId>log4j-1.2-api</artifactId>
268 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400269 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000270</project>