blob: 2899cf77028eac85017ba64037d60baf74daa4e7 [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 Maxonc95de7a2020-08-07 11:58:39 -070028 <version>0.3.6-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>
66 </ignoredDependencies>
Michael Blow2d90c0c2018-06-16 08:59:54 -040067 </configuration>
68 <executions>
69 <execution>
70 <phase>process-test-classes</phase>
71 <goals>
72 <goal>analyze-only</goal>
73 </goals>
74 </execution>
75 </executions>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.rat</groupId>
79 <artifactId>apache-rat-plugin</artifactId>
80 <configuration>
81 <excludes combine.children="append">
82 <exclude>src/test/resources/data/customer.tbl</exclude>
83 <exclude>src/test/resources/expected/part-0</exclude>
84 </excludes>
85 </configuration>
86 </plugin>
87 </plugins>
88 </build>
89
90 <dependencies>
91 <dependency>
92 <groupId>org.apache.hyracks</groupId>
93 <artifactId>hyracks-control-common</artifactId>
94 <version>${project.version}</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.apache.hadoop</groupId>
99 <artifactId>hadoop-common</artifactId>
100 <exclusions>
101 <exclusion>
102 <groupId>javax.servlet.jsp</groupId>
103 <artifactId>jsp-api</artifactId>
104 </exclusion>
105 <exclusion>
106 <groupId>javax.servlet</groupId>
107 <artifactId>servlet-api</artifactId>
108 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700109 <exclusion>
110 <groupId>log4j</groupId>
111 <artifactId>log4j</artifactId>
112 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400113 </exclusions>
114 </dependency>
115 <dependency>
116 <groupId>org.apache.hadoop</groupId>
117 <artifactId>hadoop-mapreduce-client-core</artifactId>
118 <exclusions>
119 <exclusion>
120 <groupId>com.sun.jersey.jersey-test-framework</groupId>
121 <artifactId>jersey-test-framework-grizzly2</artifactId>
122 </exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700123 <exclusion>
124 <groupId>log4j</groupId>
125 <artifactId>log4j</artifactId>
126 </exclusion>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400127 </exclusions>
128 </dependency>
129 <dependency>
130 <groupId>org.apache.hadoop</groupId>
131 <artifactId>hadoop-hdfs</artifactId>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400132 <version>${hadoop.version}</version>
133 <type>test-jar</type>
134 <classifier>tests</classifier>
135 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700136 <exclusions>
137 <exclusion>
Michael Blow64106632022-01-21 08:51:39 -0500138 <groupId>io.netty</groupId>
139 <artifactId>netty-all</artifactId>
140 </exclusion>
Michael Blowa7f6d392022-01-23 10:38:03 -0500141 <exclusion>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700142 <groupId>log4j</groupId>
143 <artifactId>log4j</artifactId>
144 </exclusion>
145 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400146 </dependency>
147 <dependency>
148 <groupId>org.apache.hadoop</groupId>
149 <artifactId>hadoop-common</artifactId>
150 <version>${hadoop.version}</version>
151 <type>test-jar</type>
152 <classifier>tests</classifier>
153 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700154 <exclusions>
155 <exclusion>
156 <groupId>log4j</groupId>
157 <artifactId>log4j</artifactId>
158 </exclusion>
159 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400160 </dependency>
161 <dependency>
162 <groupId>junit</groupId>
163 <artifactId>junit</artifactId>
164 <scope>test</scope>
165 </dependency>
166 <dependency>
167 <groupId>org.apache.hyracks</groupId>
168 <artifactId>hyracks-api</artifactId>
169 <version>${project.version}</version>
170 <scope>compile</scope>
171 </dependency>
172 <dependency>
173 <groupId>org.apache.hyracks</groupId>
174 <artifactId>hyracks-dataflow-std</artifactId>
175 <version>${project.version}</version>
176 <scope>compile</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.apache.hyracks</groupId>
180 <artifactId>hyracks-dataflow-common</artifactId>
181 <version>${project.version}</version>
182 <scope>compile</scope>
183 </dependency>
184 <dependency>
185 <groupId>org.apache.hyracks</groupId>
186 <artifactId>hyracks-control-cc</artifactId>
187 <version>${project.version}</version>
188 <scope>test</scope>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.hyracks</groupId>
192 <artifactId>hyracks-control-nc</artifactId>
193 <version>${project.version}</version>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400197 <groupId>org.apache.hyracks</groupId>
198 <artifactId>hyracks-test-support</artifactId>
199 <version>${project.version}</version>
200 <scope>test</scope>
201 </dependency>
202 <dependency>
203 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300204 <artifactId>hyracks-ipc</artifactId>
205 <version>${project.version}</version>
206 </dependency>
207 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400208 <groupId>org.apache.logging.log4j</groupId>
209 <artifactId>log4j-api</artifactId>
210 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400211 <dependency>
212 <groupId>xml-apis</groupId>
213 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500214 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400215 <scope>test</scope>
216 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700217 <dependency>
218 <groupId>org.apache.logging.log4j</groupId>
219 <artifactId>log4j-1.2-api</artifactId>
220 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400221 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000222</project>