blob: ced036c2aa3c4ecc36f65f4e8e5808950c3ca64a [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 Jenkins23bd6ef2018-08-31 14:56:33 -070028 <version>0.3.4</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>
90 <artifactId>hyracks-control-common</artifactId>
91 <version>${project.version}</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.hadoop</groupId>
96 <artifactId>hadoop-common</artifactId>
97 <exclusions>
98 <exclusion>
99 <groupId>javax.servlet.jsp</groupId>
100 <artifactId>jsp-api</artifactId>
101 </exclusion>
102 <exclusion>
103 <groupId>javax.servlet</groupId>
104 <artifactId>servlet-api</artifactId>
105 </exclusion>
106 </exclusions>
107 </dependency>
108 <dependency>
109 <groupId>org.apache.hadoop</groupId>
110 <artifactId>hadoop-mapreduce-client-core</artifactId>
111 <exclusions>
112 <exclusion>
113 <groupId>com.sun.jersey.jersey-test-framework</groupId>
114 <artifactId>jersey-test-framework-grizzly2</artifactId>
115 </exclusion>
116 </exclusions>
117 </dependency>
118 <dependency>
119 <groupId>org.apache.hadoop</groupId>
120 <artifactId>hadoop-hdfs</artifactId>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>org.apache.hadoop</groupId>
125 <artifactId>hadoop-hdfs</artifactId>
126 <version>${hadoop.version}</version>
127 <type>test-jar</type>
128 <classifier>tests</classifier>
129 <scope>test</scope>
130 </dependency>
131 <dependency>
132 <groupId>org.apache.hadoop</groupId>
133 <artifactId>hadoop-common</artifactId>
134 <version>${hadoop.version}</version>
135 <type>test-jar</type>
136 <classifier>tests</classifier>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>junit</groupId>
141 <artifactId>junit</artifactId>
142 <scope>test</scope>
143 </dependency>
144 <dependency>
145 <groupId>org.apache.hyracks</groupId>
146 <artifactId>hyracks-api</artifactId>
147 <version>${project.version}</version>
148 <scope>compile</scope>
149 </dependency>
150 <dependency>
151 <groupId>org.apache.hyracks</groupId>
152 <artifactId>hyracks-dataflow-std</artifactId>
153 <version>${project.version}</version>
154 <scope>compile</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.apache.hyracks</groupId>
158 <artifactId>hyracks-dataflow-common</artifactId>
159 <version>${project.version}</version>
160 <scope>compile</scope>
161 </dependency>
162 <dependency>
163 <groupId>org.apache.hyracks</groupId>
164 <artifactId>hyracks-control-cc</artifactId>
165 <version>${project.version}</version>
166 <scope>test</scope>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.hyracks</groupId>
170 <artifactId>hyracks-control-nc</artifactId>
171 <version>${project.version}</version>
172 <scope>test</scope>
173 </dependency>
174 <dependency>
175 <groupId>commons-io</groupId>
176 <artifactId>commons-io</artifactId>
177 <scope>test</scope>
178 </dependency>
179 <dependency>
180 <groupId>org.apache.hyracks</groupId>
181 <artifactId>hyracks-test-support</artifactId>
182 <version>${project.version}</version>
183 <scope>test</scope>
184 </dependency>
185 <dependency>
186 <groupId>org.apache.hyracks</groupId>
187 <artifactId>hyracks-util</artifactId>
188 <version>${project.version}</version>
189 <scope>test</scope>
190 </dependency>
191 <dependency>
192 <groupId>org.apache.logging.log4j</groupId>
193 <artifactId>log4j-api</artifactId>
194 </dependency>
195 </dependencies>
buyingyi55df5212013-03-24 07:20:08 +0000196</project>