blob: a35f816f53da8d42a5fc9e98386c83b8ef65ef70 [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>
AsterixDB Jenkins478eccb2018-08-31 14:57:31 -070028 <version>0.3.5-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>
63 <ignoredUnusedDeclaredDependencies>org.apache.hadoop:hadoop*::</ignoredUnusedDeclaredDependencies>
64 </configuration>
65 <executions>
66 <execution>
67 <phase>process-test-classes</phase>
68 <goals>
69 <goal>analyze-only</goal>
70 </goals>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.rat</groupId>
76 <artifactId>apache-rat-plugin</artifactId>
77 <configuration>
78 <excludes combine.children="append">
79 <exclude>src/test/resources/data/customer.tbl</exclude>
80 <exclude>src/test/resources/expected/part-0</exclude>
81 </excludes>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86
87 <dependencies>
88 <dependency>
89 <groupId>org.apache.hyracks</groupId>
Ali Alsuliman223d13a2019-03-22 18:01:18 -070090 <artifactId>hyracks-data-std</artifactId>
91 <version>${project.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.hyracks</groupId>
Michael Blow2d90c0c2018-06-16 08:59:54 -040095 <artifactId>hyracks-control-common</artifactId>
96 <version>${project.version}</version>
97 <scope>test</scope>
98 </dependency>
99 <dependency>
100 <groupId>org.apache.hadoop</groupId>
101 <artifactId>hadoop-common</artifactId>
102 <exclusions>
103 <exclusion>
104 <groupId>javax.servlet.jsp</groupId>
105 <artifactId>jsp-api</artifactId>
106 </exclusion>
107 <exclusion>
108 <groupId>javax.servlet</groupId>
109 <artifactId>servlet-api</artifactId>
110 </exclusion>
111 </exclusions>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.hadoop</groupId>
115 <artifactId>hadoop-mapreduce-client-core</artifactId>
116 <exclusions>
117 <exclusion>
118 <groupId>com.sun.jersey.jersey-test-framework</groupId>
119 <artifactId>jersey-test-framework-grizzly2</artifactId>
120 </exclusion>
121 </exclusions>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.hadoop</groupId>
125 <artifactId>hadoop-hdfs</artifactId>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.apache.hadoop</groupId>
130 <artifactId>hadoop-hdfs</artifactId>
131 <version>${hadoop.version}</version>
132 <type>test-jar</type>
133 <classifier>tests</classifier>
134 <scope>test</scope>
Michael Blow64106632022-01-21 08:51:39 -0500135 <exclusions>
136 <exclusion>
137 <groupId>io.netty</groupId>
138 <artifactId>netty-all</artifactId>
139 </exclusion>
140 </exclusions>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400141 </dependency>
142 <dependency>
143 <groupId>org.apache.hadoop</groupId>
144 <artifactId>hadoop-common</artifactId>
145 <version>${hadoop.version}</version>
146 <type>test-jar</type>
147 <classifier>tests</classifier>
148 <scope>test</scope>
149 </dependency>
150 <dependency>
151 <groupId>junit</groupId>
152 <artifactId>junit</artifactId>
153 <scope>test</scope>
154 </dependency>
155 <dependency>
156 <groupId>org.apache.hyracks</groupId>
157 <artifactId>hyracks-api</artifactId>
158 <version>${project.version}</version>
159 <scope>compile</scope>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.hyracks</groupId>
163 <artifactId>hyracks-dataflow-std</artifactId>
164 <version>${project.version}</version>
165 <scope>compile</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.hyracks</groupId>
169 <artifactId>hyracks-dataflow-common</artifactId>
170 <version>${project.version}</version>
171 <scope>compile</scope>
172 </dependency>
173 <dependency>
174 <groupId>org.apache.hyracks</groupId>
175 <artifactId>hyracks-control-cc</artifactId>
176 <version>${project.version}</version>
177 <scope>test</scope>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.hyracks</groupId>
181 <artifactId>hyracks-control-nc</artifactId>
182 <version>${project.version}</version>
183 <scope>test</scope>
184 </dependency>
185 <dependency>
186 <groupId>commons-io</groupId>
187 <artifactId>commons-io</artifactId>
188 <scope>test</scope>
189 </dependency>
190 <dependency>
191 <groupId>org.apache.hyracks</groupId>
192 <artifactId>hyracks-test-support</artifactId>
193 <version>${project.version}</version>
194 <scope>test</scope>
195 </dependency>
196 <dependency>
197 <groupId>org.apache.hyracks</groupId>
198 <artifactId>hyracks-util</artifactId>
199 <version>${project.version}</version>
200 <scope>test</scope>
201 </dependency>
202 <dependency>
Murtadha Hubailda7e8a12018-12-04 02:29:11 +0300203 <groupId>org.apache.hyracks</groupId>
204 <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>
Michael Blow2d90c0c2018-06-16 08:59:54 -0400217 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000218</project>