blob: 1291564ee582bb763aab9d86b8eef65c6ad2e5de [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>
Ian Maxon0cde5152025-02-20 14:22:00 -080088 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-surefire-plugin</artifactId>
91 </plugin>
Michael Blow2d90c0c2018-06-16 08:59:54 -040092 </plugins>
93 </build>
94
95 <dependencies>
96 <dependency>
97 <groupId>org.apache.hyracks</groupId>
98 <artifactId>hyracks-control-common</artifactId>
99 <version>${project.version}</version>
100 <scope>test</scope>
101 </dependency>
102 <dependency>
103 <groupId>org.apache.hadoop</groupId>
104 <artifactId>hadoop-common</artifactId>
105 <exclusions>
106 <exclusion>
Hussain Towaileb0ee537c2021-09-21 04:10:10 +0300107 <groupId>com.nimbusds</groupId>
108 <artifactId>nimbus-jose-jwt</artifactId>
109 </exclusion>
110 <exclusion>
hariuserxf6d772c2023-05-03 11:13:24 -0700111 <groupId>org.apache.avro</groupId>
112 <artifactId>avro</artifactId>
113 </exclusion>
114 <exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400115 <groupId>javax.servlet.jsp</groupId>
116 <artifactId>jsp-api</artifactId>
117 </exclusion>
118 <exclusion>
119 <groupId>javax.servlet</groupId>
120 <artifactId>servlet-api</artifactId>
121 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700122 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500123 <groupId>org.slf4j</groupId>
124 <artifactId>slf4j-reload4j</artifactId>
125 </exclusion>
126 <exclusion>
127 <groupId>ch.qos.reload4j</groupId>
128 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700129 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400130 </exclusions>
131 </dependency>
132 <dependency>
133 <groupId>org.apache.hadoop</groupId>
134 <artifactId>hadoop-mapreduce-client-core</artifactId>
135 <exclusions>
136 <exclusion>
hariuserxf6d772c2023-05-03 11:13:24 -0700137 <groupId>org.apache.avro</groupId>
138 <artifactId>avro</artifactId>
139 </exclusion>
140 <exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400141 <groupId>com.sun.jersey.jersey-test-framework</groupId>
142 <artifactId>jersey-test-framework-grizzly2</artifactId>
143 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700144 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500145 <groupId>org.slf4j</groupId>
146 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700147 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700148 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500149 <groupId>ch.qos.reload4j</groupId>
150 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700151 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400152 </exclusions>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.hadoop</groupId>
156 <artifactId>hadoop-hdfs</artifactId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400157 <version>${hadoop.version}</version>
158 <type>test-jar</type>
159 <classifier>tests</classifier>
160 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700161 <exclusions>
162 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500163 <groupId>io.netty</groupId>
164 <artifactId>netty-all</artifactId>
165 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500166 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500167 <groupId>org.slf4j</groupId>
168 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700169 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700170 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500171 <groupId>ch.qos.reload4j</groupId>
172 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700173 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700174 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400175 </dependency>
176 <dependency>
177 <groupId>org.apache.hadoop</groupId>
178 <artifactId>hadoop-common</artifactId>
179 <version>${hadoop.version}</version>
180 <type>test-jar</type>
181 <classifier>tests</classifier>
182 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700183 <exclusions>
184 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300185 <groupId>net.minidev</groupId>
186 <artifactId>json-smart</artifactId>
187 </exclusion>
188 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700189 <groupId>log4j</groupId>
190 <artifactId>log4j</artifactId>
191 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700192 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500193 <groupId>ch.qos.reload4j</groupId>
194 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700195 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700196 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400197 </dependency>
198 <dependency>
199 <groupId>junit</groupId>
200 <artifactId>junit</artifactId>
201 <scope>test</scope>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.hyracks</groupId>
205 <artifactId>hyracks-api</artifactId>
206 <version>${project.version}</version>
207 <scope>compile</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hyracks</groupId>
211 <artifactId>hyracks-dataflow-std</artifactId>
212 <version>${project.version}</version>
213 <scope>compile</scope>
214 </dependency>
215 <dependency>
216 <groupId>org.apache.hyracks</groupId>
217 <artifactId>hyracks-dataflow-common</artifactId>
218 <version>${project.version}</version>
219 <scope>compile</scope>
220 </dependency>
221 <dependency>
222 <groupId>org.apache.hyracks</groupId>
223 <artifactId>hyracks-control-cc</artifactId>
224 <version>${project.version}</version>
225 <scope>test</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.hyracks</groupId>
229 <artifactId>hyracks-control-nc</artifactId>
230 <version>${project.version}</version>
231 <scope>test</scope>
232 </dependency>
233 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400234 <groupId>org.apache.hyracks</groupId>
235 <artifactId>hyracks-test-support</artifactId>
236 <version>${project.version}</version>
237 <scope>test</scope>
238 </dependency>
239 <dependency>
240 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300241 <artifactId>hyracks-ipc</artifactId>
242 <version>${project.version}</version>
243 </dependency>
244 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400245 <groupId>org.apache.logging.log4j</groupId>
246 <artifactId>log4j-api</artifactId>
247 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400248 <dependency>
249 <groupId>xml-apis</groupId>
250 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500251 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400252 <scope>test</scope>
253 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700254 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700255 <groupId>org.slf4j</groupId>
256 <artifactId>slf4j-simple</artifactId>
257 <scope>test</scope>
258 </dependency>
259 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700260 <groupId>org.apache.logging.log4j</groupId>
261 <artifactId>log4j-1.2-api</artifactId>
262 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400263 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000264</project>