blob: fb0aed54048cb07e457fc026982c0aaf89beeb83 [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 Maxon40575912020-10-04 23:11:25 -070028 <version>0.3.6</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>
138 <groupId>log4j</groupId>
139 <artifactId>log4j</artifactId>
140 </exclusion>
141 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400142 </dependency>
143 <dependency>
144 <groupId>org.apache.hadoop</groupId>
145 <artifactId>hadoop-common</artifactId>
146 <version>${hadoop.version}</version>
147 <type>test-jar</type>
148 <classifier>tests</classifier>
149 <scope>test</scope>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700150 <exclusions>
151 <exclusion>
152 <groupId>log4j</groupId>
153 <artifactId>log4j</artifactId>
154 </exclusion>
155 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400156 </dependency>
157 <dependency>
158 <groupId>junit</groupId>
159 <artifactId>junit</artifactId>
160 <scope>test</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.apache.hyracks</groupId>
164 <artifactId>hyracks-api</artifactId>
165 <version>${project.version}</version>
166 <scope>compile</scope>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.hyracks</groupId>
170 <artifactId>hyracks-dataflow-std</artifactId>
171 <version>${project.version}</version>
172 <scope>compile</scope>
173 </dependency>
174 <dependency>
175 <groupId>org.apache.hyracks</groupId>
176 <artifactId>hyracks-dataflow-common</artifactId>
177 <version>${project.version}</version>
178 <scope>compile</scope>
179 </dependency>
180 <dependency>
181 <groupId>org.apache.hyracks</groupId>
182 <artifactId>hyracks-control-cc</artifactId>
183 <version>${project.version}</version>
184 <scope>test</scope>
185 </dependency>
186 <dependency>
187 <groupId>org.apache.hyracks</groupId>
188 <artifactId>hyracks-control-nc</artifactId>
189 <version>${project.version}</version>
190 <scope>test</scope>
191 </dependency>
192 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400193 <groupId>org.apache.hyracks</groupId>
194 <artifactId>hyracks-test-support</artifactId>
195 <version>${project.version}</version>
196 <scope>test</scope>
197 </dependency>
198 <dependency>
199 <groupId>org.apache.hyracks</groupId>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300200 <artifactId>hyracks-ipc</artifactId>
201 <version>${project.version}</version>
202 </dependency>
203 <dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400204 <groupId>org.apache.logging.log4j</groupId>
205 <artifactId>log4j-api</artifactId>
206 </dependency>
Michael Blow3477a2b2018-10-04 17:17:35 -0400207 <dependency>
208 <groupId>xml-apis</groupId>
209 <artifactId>xml-apis</artifactId>
Michael Blowaa028022020-02-04 21:45:02 -0500210 <version>1.0.b2</version>
Michael Blow3477a2b2018-10-04 17:17:35 -0400211 <scope>test</scope>
212 </dependency>
Ian Maxon4a20fb22020-06-08 17:23:07 -0700213 <dependency>
214 <groupId>org.apache.logging.log4j</groupId>
215 <artifactId>log4j-1.2-api</artifactId>
216 </dependency>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400217 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000218</project>