blob: b0064c62f971871f5bf118a7c4ae0070d22e7dd6 [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 Maxonf20e64f2024-03-05 00:02:55 -080028 <version>0.3.10-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>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700170 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400171 </dependency>
172 <dependency>
173 <groupId>org.apache.hadoop</groupId>
174 <artifactId>hadoop-common</artifactId>
175 <version>${hadoop.version}</version>
176 <type>test-jar</type>
177 <classifier>tests</classifier>
178 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700179 <exclusions>
180 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300181 <groupId>net.minidev</groupId>
182 <artifactId>json-smart</artifactId>
183 </exclusion>
184 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700185 <groupId>log4j</groupId>
186 <artifactId>log4j</artifactId>
187 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700188 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500189 <groupId>ch.qos.reload4j</groupId>
190 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700191 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700192 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400193 </dependency>
194 <dependency>
195 <groupId>junit</groupId>
196 <artifactId>junit</artifactId>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>org.apache.hyracks</groupId>
201 <artifactId>hyracks-api</artifactId>
202 <version>${project.version}</version>
203 <scope>compile</scope>
204 </dependency>
205 <dependency>
206 <groupId>org.apache.hyracks</groupId>
207 <artifactId>hyracks-dataflow-std</artifactId>
208 <version>${project.version}</version>
209 <scope>compile</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.apache.hyracks</groupId>
213 <artifactId>hyracks-dataflow-common</artifactId>
214 <version>${project.version}</version>
215 <scope>compile</scope>
216 </dependency>
217 <dependency>
218 <groupId>org.apache.hyracks</groupId>
219 <artifactId>hyracks-control-cc</artifactId>
220 <version>${project.version}</version>
221 <scope>test</scope>
222 </dependency>
223 <dependency>
224 <groupId>org.apache.hyracks</groupId>
225 <artifactId>hyracks-control-nc</artifactId>
226 <version>${project.version}</version>
227 <scope>test</scope>
228 </dependency>
229 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400230 <groupId>org.apache.hyracks</groupId>
231 <artifactId>hyracks-test-support</artifactId>
232 <version>${project.version}</version>
233 <scope>test</scope>
234 </dependency>
235 <dependency>
236 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300237 <artifactId>hyracks-ipc</artifactId>
238 <version>${project.version}</version>
239 </dependency>
240 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400241 <groupId>org.apache.logging.log4j</groupId>
242 <artifactId>log4j-api</artifactId>
243 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400244 <dependency>
245 <groupId>xml-apis</groupId>
246 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500247 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400248 <scope>test</scope>
249 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700250 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700251 <groupId>org.slf4j</groupId>
252 <artifactId>slf4j-simple</artifactId>
253 <scope>test</scope>
254 </dependency>
255 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700256 <groupId>org.apache.logging.log4j</groupId>
257 <artifactId>log4j-1.2-api</artifactId>
258 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400259 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000260</project>