blob: 985515ced802d60a1fc04b45df27f486392c4e52 [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 Maxon25824812022-01-27 11:49:12 -080028 <version>0.3.8-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>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400107 <groupId>javax.servlet.jsp</groupId>
108 <artifactId>jsp-api</artifactId>
109 </exclusion>
110 <exclusion>
111 <groupId>javax.servlet</groupId>
112 <artifactId>servlet-api</artifactId>
113 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700114 <exclusion>
115 <groupId>log4j</groupId>
116 <artifactId>log4j</artifactId>
117 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400118 </exclusions>
119 </dependency>
120 <dependency>
121 <groupId>org.apache.hadoop</groupId>
122 <artifactId>hadoop-mapreduce-client-core</artifactId>
123 <exclusions>
124 <exclusion>
125 <groupId>com.sun.jersey.jersey-test-framework</groupId>
126 <artifactId>jersey-test-framework-grizzly2</artifactId>
127 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700128 <exclusion>
129 <groupId>log4j</groupId>
130 <artifactId>log4j</artifactId>
131 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700132 <exclusion>
133 <groupId>org.slf4j</groupId>
134 <artifactId>slf4j-api</artifactId>
135 </exclusion>
136 <exclusion>
137 <groupId>org.slf4j</groupId>
138 <artifactId>slf4j-log4j12</artifactId>
139 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400140 </exclusions>
141 </dependency>
142 <dependency>
143 <groupId>org.apache.hadoop</groupId>
144 <artifactId>hadoop-hdfs</artifactId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400145 <version>${hadoop.version}</version>
146 <type>test-jar</type>
147 <classifier>tests</classifier>
148 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700149 <exclusions>
150 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500151 <groupId>io.netty</groupId>
152 <artifactId>netty-all</artifactId>
153 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500154 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700155 <groupId>log4j</groupId>
156 <artifactId>log4j</artifactId>
157 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700158 <exclusion>
159 <groupId>org.slf4j</groupId>
160 <artifactId>slf4j-api</artifactId>
161 </exclusion>
162 <exclusion>
163 <groupId>org.slf4j</groupId>
164 <artifactId>slf4j-log4j12</artifactId>
165 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700166 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400167 </dependency>
168 <dependency>
169 <groupId>org.apache.hadoop</groupId>
170 <artifactId>hadoop-common</artifactId>
171 <version>${hadoop.version}</version>
172 <type>test-jar</type>
173 <classifier>tests</classifier>
174 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700175 <exclusions>
176 <exclusion>
177 <groupId>log4j</groupId>
178 <artifactId>log4j</artifactId>
179 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700180 <exclusion>
181 <groupId>org.slf4j</groupId>
182 <artifactId>slf4j-api</artifactId>
183 </exclusion>
184 <exclusion>
185 <groupId>org.slf4j</groupId>
186 <artifactId>slf4j-log4j12</artifactId>
187 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700188 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400189 </dependency>
190 <dependency>
191 <groupId>junit</groupId>
192 <artifactId>junit</artifactId>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
196 <groupId>org.apache.hyracks</groupId>
197 <artifactId>hyracks-api</artifactId>
198 <version>${project.version}</version>
199 <scope>compile</scope>
200 </dependency>
201 <dependency>
202 <groupId>org.apache.hyracks</groupId>
203 <artifactId>hyracks-dataflow-std</artifactId>
204 <version>${project.version}</version>
205 <scope>compile</scope>
206 </dependency>
207 <dependency>
208 <groupId>org.apache.hyracks</groupId>
209 <artifactId>hyracks-dataflow-common</artifactId>
210 <version>${project.version}</version>
211 <scope>compile</scope>
212 </dependency>
213 <dependency>
214 <groupId>org.apache.hyracks</groupId>
215 <artifactId>hyracks-control-cc</artifactId>
216 <version>${project.version}</version>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
220 <groupId>org.apache.hyracks</groupId>
221 <artifactId>hyracks-control-nc</artifactId>
222 <version>${project.version}</version>
223 <scope>test</scope>
224 </dependency>
225 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400226 <groupId>org.apache.hyracks</groupId>
227 <artifactId>hyracks-test-support</artifactId>
228 <version>${project.version}</version>
229 <scope>test</scope>
230 </dependency>
231 <dependency>
232 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300233 <artifactId>hyracks-ipc</artifactId>
234 <version>${project.version}</version>
235 </dependency>
236 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400237 <groupId>org.apache.logging.log4j</groupId>
238 <artifactId>log4j-api</artifactId>
239 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400240 <dependency>
241 <groupId>xml-apis</groupId>
242 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500243 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400244 <scope>test</scope>
245 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700246 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700247 <groupId>org.slf4j</groupId>
248 <artifactId>slf4j-simple</artifactId>
249 <scope>test</scope>
250 </dependency>
251 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700252 <groupId>org.apache.logging.log4j</groupId>
253 <artifactId>log4j-1.2-api</artifactId>
254 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400255 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000256</project>