blob: 265312973d6799c8f6ad78877af6728606d7e1a4 [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 Maxonbf0abd42024-03-05 11:26:12 -080028 <version>0.3.8.3-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>
Michael Blow621cd022023-02-15 20:00:51 -0500115 <groupId>org.slf4j</groupId>
116 <artifactId>slf4j-reload4j</artifactId>
117 </exclusion>
118 <exclusion>
119 <groupId>ch.qos.reload4j</groupId>
120 <artifactId>reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700121 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400122 </exclusions>
123 </dependency>
124 <dependency>
125 <groupId>org.apache.hadoop</groupId>
126 <artifactId>hadoop-mapreduce-client-core</artifactId>
127 <exclusions>
128 <exclusion>
129 <groupId>com.sun.jersey.jersey-test-framework</groupId>
130 <artifactId>jersey-test-framework-grizzly2</artifactId>
131 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700132 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500133 <groupId>org.slf4j</groupId>
134 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700135 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700136 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500137 <groupId>ch.qos.reload4j</groupId>
138 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700139 </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>
Michael Blow621cd022023-02-15 20:00:51 -0500155 <groupId>org.slf4j</groupId>
156 <artifactId>slf4j-reload4j</artifactId>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700157 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700158 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500159 <groupId>ch.qos.reload4j</groupId>
160 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700161 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700162 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400163 </dependency>
164 <dependency>
165 <groupId>org.apache.hadoop</groupId>
166 <artifactId>hadoop-common</artifactId>
167 <version>${hadoop.version}</version>
168 <type>test-jar</type>
169 <classifier>tests</classifier>
170 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700171 <exclusions>
172 <exclusion>
Hussain Towailebaedda352023-05-22 04:45:42 +0300173 <groupId>net.minidev</groupId>
174 <artifactId>json-smart</artifactId>
175 </exclusion>
176 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700177 <groupId>log4j</groupId>
178 <artifactId>log4j</artifactId>
179 </exclusion>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700180 <exclusion>
Michael Blow621cd022023-02-15 20:00:51 -0500181 <groupId>ch.qos.reload4j</groupId>
182 <artifactId>reload4j</artifactId>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700183 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700184 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400185 </dependency>
186 <dependency>
187 <groupId>junit</groupId>
188 <artifactId>junit</artifactId>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.hyracks</groupId>
193 <artifactId>hyracks-api</artifactId>
194 <version>${project.version}</version>
195 <scope>compile</scope>
196 </dependency>
197 <dependency>
198 <groupId>org.apache.hyracks</groupId>
199 <artifactId>hyracks-dataflow-std</artifactId>
200 <version>${project.version}</version>
201 <scope>compile</scope>
202 </dependency>
203 <dependency>
204 <groupId>org.apache.hyracks</groupId>
205 <artifactId>hyracks-dataflow-common</artifactId>
206 <version>${project.version}</version>
207 <scope>compile</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.apache.hyracks</groupId>
211 <artifactId>hyracks-control-cc</artifactId>
212 <version>${project.version}</version>
213 <scope>test</scope>
214 </dependency>
215 <dependency>
216 <groupId>org.apache.hyracks</groupId>
217 <artifactId>hyracks-control-nc</artifactId>
218 <version>${project.version}</version>
219 <scope>test</scope>
220 </dependency>
221 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400222 <groupId>org.apache.hyracks</groupId>
223 <artifactId>hyracks-test-support</artifactId>
224 <version>${project.version}</version>
225 <scope>test</scope>
226 </dependency>
227 <dependency>
228 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300229 <artifactId>hyracks-ipc</artifactId>
230 <version>${project.version}</version>
231 </dependency>
232 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400233 <groupId>org.apache.logging.log4j</groupId>
234 <artifactId>log4j-api</artifactId>
235 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400236 <dependency>
237 <groupId>xml-apis</groupId>
238 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500239 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400240 <scope>test</scope>
241 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700242 <dependency>
Dmitry Lychagin47431182021-10-26 20:22:59 -0700243 <groupId>org.slf4j</groupId>
244 <artifactId>slf4j-simple</artifactId>
245 <scope>test</scope>
246 </dependency>
247 <dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700248 <groupId>org.apache.logging.log4j</groupId>
249 <artifactId>log4j-1.2-api</artifactId>
250 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400251 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000252</project>