Till Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 1 | <!-- |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 2 | ! 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 Westmann | 276bbc2 | 2013-06-05 18:56:27 -0700 | [diff] [blame] | 18 | !--> |
Ian Maxon | d885779 | 2015-09-11 14:19:53 -0700 | [diff] [blame] | 19 | |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 20 | <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> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 23 | <name>hyracks-hdfs</name> |
| 24 | |
| 25 | <parent> |
Ian Maxon | e915e8c | 2015-07-01 17:03:31 -0700 | [diff] [blame] | 26 | <groupId>org.apache.hyracks</groupId> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 27 | <artifactId>hyracks</artifactId> |
Ian Maxon | 03ccded | 2021-03-07 18:35:16 -0800 | [diff] [blame] | 28 | <version>0.3.7-SNAPSHOT</version> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 31 | <properties> |
Michael Blow | b4c1fb0 | 2016-05-09 15:41:00 -0700 | [diff] [blame] | 32 | <root.dir>${basedir}/../..</root.dir> |
Ian Maxon | 9e37c96 | 2015-11-25 07:38:37 -0800 | [diff] [blame] | 33 | </properties> |
| 34 | |
Ian | e82f811 | 2014-11-19 12:31:18 -0800 | [diff] [blame] | 35 | <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 Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 44 | <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 Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 63 | <ignoredDependencies> |
| 64 | <ignoredDependency>org.apache.hadoop:hadoop*::</ignoredDependency> |
| 65 | <ignoredDependency>org.apache.logging.log4j:log4j*::</ignoredDependency> |
| 66 | </ignoredDependencies> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 67 | </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 Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 109 | <exclusion> |
| 110 | <groupId>log4j</groupId> |
| 111 | <artifactId>log4j</artifactId> |
| 112 | </exclusion> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 113 | </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 Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 123 | <exclusion> |
| 124 | <groupId>log4j</groupId> |
| 125 | <artifactId>log4j</artifactId> |
| 126 | </exclusion> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 127 | </exclusions> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>org.apache.hadoop</groupId> |
| 131 | <artifactId>hadoop-hdfs</artifactId> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 132 | <version>${hadoop.version}</version> |
| 133 | <type>test-jar</type> |
| 134 | <classifier>tests</classifier> |
| 135 | <scope>test</scope> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 136 | <exclusions> |
| 137 | <exclusion> |
| 138 | <groupId>log4j</groupId> |
| 139 | <artifactId>log4j</artifactId> |
| 140 | </exclusion> |
| 141 | </exclusions> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 142 | </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 Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 150 | <exclusions> |
| 151 | <exclusion> |
| 152 | <groupId>log4j</groupId> |
| 153 | <artifactId>log4j</artifactId> |
| 154 | </exclusion> |
| 155 | </exclusions> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 156 | </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 Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 193 | <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 Hubail | da7e8a1 | 2018-12-04 02:29:11 +0300 | [diff] [blame] | 200 | <artifactId>hyracks-ipc</artifactId> |
| 201 | <version>${project.version}</version> |
| 202 | </dependency> |
| 203 | <dependency> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 204 | <groupId>org.apache.logging.log4j</groupId> |
| 205 | <artifactId>log4j-api</artifactId> |
| 206 | </dependency> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>xml-apis</groupId> |
| 209 | <artifactId>xml-apis</artifactId> |
Michael Blow | aa02802 | 2020-02-04 21:45:02 -0500 | [diff] [blame] | 210 | <version>1.0.b2</version> |
Michael Blow | 3477a2b | 2018-10-04 17:17:35 -0400 | [diff] [blame] | 211 | <scope>test</scope> |
| 212 | </dependency> |
Ian Maxon | 4a20fb2 | 2020-06-08 17:23:07 -0700 | [diff] [blame] | 213 | <dependency> |
| 214 | <groupId>org.apache.logging.log4j</groupId> |
| 215 | <artifactId>log4j-1.2-api</artifactId> |
| 216 | </dependency> |
Michael Blow | 2d90c0c | 2018-06-16 08:59:54 -0400 | [diff] [blame] | 217 | </dependencies> |
buyingyi | 55df521 | 2013-03-24 07:20:08 +0000 | [diff] [blame] | 218 | </project> |