pom.xml 29.7 KB
Newer Older
S
sewen 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3 4 5 6 7 8 9
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at
10

11
  http://www.apache.org/licenses/LICENSE-2.0
12

13 14 15 16 17 18
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
19
-->
20
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
21
	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
S
sewen 已提交
22

23
	<parent>
24 25 26
		<groupId>org.apache</groupId>
		<artifactId>apache</artifactId>
		<version>14</version>
27 28
	</parent>

S
sewen 已提交
29
	<modelVersion>4.0.0</modelVersion>
30

31 32
	<groupId>org.apache.flink</groupId>
	<artifactId>flink-parent</artifactId>
33
	<version>0.9-SNAPSHOT</version>
34

35
	<name>flink</name>
S
sewen 已提交
36
	<packaging>pom</packaging>
S
Stephan Ewen 已提交
37
	<url>http://flink.apache.org</url>
38
	<inceptionYear>2014</inceptionYear>
39

S
sewen 已提交
40 41 42 43
	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
44
			<distribution>repo</distribution>
S
sewen 已提交
45 46
		</license>
	</licenses>
47

48
	<scm>
49
		<url>https://github.com/apache/flink</url>
S
Stephan Ewen 已提交
50
		<connection>git@github.com:apache/flink.git</connection>
51
		<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/flink.git</developerConnection>
52 53
	</scm>

54
	<modules>
55
		<module>flink-shaded-hadoop</module>
56 57 58 59
		<module>flink-core</module>
		<module>flink-java</module>
		<module>flink-scala</module>
		<module>flink-runtime</module>
60
		<module>flink-optimizer</module>
61 62
		<module>flink-examples</module>
		<module>flink-clients</module>
T
Till Rohrmann 已提交
63 64
		<module>flink-tests</module>
		<module>flink-test-utils</module>
65
		<module>flink-staging</module>
66
		<module>flink-quickstart</module>
67
		<module>flink-contrib</module>
68
		<module>flink-dist</module>
69 70
	</modules>

S
sewen 已提交
71 72
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
S
StephanEwen 已提交
73
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
74
		<shading-artifact.name>error</shading-artifact.name>
75
		<hadoop-one.version>1.2.1</hadoop-one.version>
76
		<hadoop-two.version>2.2.0</hadoop-two.version>
A
Aljoscha Krettek 已提交
77 78 79
		<!-- Need to use a user property here because the surefire/failsafe
			 forkCount is not exposed as a property. With this we can set
			 it on the "mvn" commandline in travis. -->
80
		<flink.forkCount>1.5C</flink.forkCount>
81
		<flink.reuseForks>true</flink.reuseForks>
82
		<log4j.configuration>log4j-test.properties</log4j.configuration>
83
		<slf4j.version>1.7.7</slf4j.version>
84
		<guava.version>18.0</guava.version>
85
		<akka.version>2.3.7</akka.version>
86
		<scala.macros.version>2.0.1</scala.macros.version>
87
		<kryoserialization.version>0.3.2</kryoserialization.version>
88
		<protobuf.version>2.5.0</protobuf.version>
89 90
		<chill.version>0.5.2</chill.version>
		<asm.version>4.0</asm.version>
S
sewen 已提交
91
	</properties>
92

S
sewen 已提交
93
	<dependencies>
94 95 96
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
S
Stephan Ewen 已提交
97
			<version>3.3.2</version>
98
		</dependency>
99

100
		<dependency>
S
Stephan Ewen 已提交
101 102 103
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>${slf4j.version}</version>
104
		</dependency>
R
Robert Metzger 已提交
105

106
		<dependency>
107 108 109
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-log4j12</artifactId>
			<version>${slf4j.version}</version>
110 111
		</dependency>

112 113 114 115 116
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.17</version>
		</dependency>
R
Robert Metzger 已提交
117

S
sewen 已提交
118 119 120
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
121
			<version>4.11</version>
S
sewen 已提交
122 123 124
			<type>jar</type>
			<scope>test</scope>
		</dependency>
R
Robert Metzger 已提交
125

126 127 128
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
129
			<version>1.9.5</version>
130
			<type>jar</type>
A
arvid 已提交
131
			<scope>test</scope>
132
		</dependency>
R
Robert Metzger 已提交
133

134 135 136
		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-module-junit4</artifactId>
137
			<version>1.5.5</version>
138 139 140
			<type>jar</type>
			<scope>test</scope>
		</dependency>
R
Robert Metzger 已提交
141

142 143 144
		<dependency>
			<groupId>org.powermock</groupId>
			<artifactId>powermock-api-mockito</artifactId>
145
			<version>1.5.5</version>
146 147 148
			<type>jar</type>
			<scope>test</scope>
		</dependency>
R
Robert Metzger 已提交
149

150 151 152
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-all</artifactId>
153
			<version>1.3</version>
154 155
			<type>jar</type>
			<scope>test</scope>
156 157
		</dependency>
	</dependencies>
S
Stephan Ewen 已提交
158 159 160
	
	<!-- this section defines the module versions that are used if nothing else is specified. -->
	<dependencyManagement>
161 162 163 164 165 166 167 168 169
		<!-- WARN: 
			DO NOT put 	guava, 
						protobuf, 
						asm,
						netty
					here. It will overwrite Hadoop's guava dependency (even though we handle it
			separatly in the flink-shaded-hadoop module).
			We can use all guava versions everywhere by adding it directly as a dependency to each project.
		-->
S
Stephan Ewen 已提交
170
		<dependencies>
171

S
Stephan Ewen 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
			<!-- Make sure we use a consistent jetty version throughout the project -->
			<dependency>
				<groupId>org.eclipse.jetty</groupId>
				<artifactId>jetty-server</artifactId>
				<version>8.0.0.M1</version>
			</dependency>
			<dependency>
				<groupId>org.eclipse.jetty</groupId>
				<artifactId>jetty-security</artifactId>
				<version>8.0.0.M1</version>
			</dependency>
			<dependency>
				<groupId>org.eclipse.jetty</groupId>
				<artifactId>jetty-servlet</artifactId>
				<version>8.0.0.M1</version>
			</dependency>
188 189 190 191 192
			<dependency>
				<groupId>org.eclipse.jetty</groupId>
				<artifactId>jetty-util</artifactId>
				<version>8.0.0.M1</version>
			</dependency>
193

S
Stephan Ewen 已提交
194 195 196 197 198 199 200 201
			<!-- Make sure we use a consistent avro version throughout the project -->
			<dependency>
				<groupId>org.apache.avro</groupId>
				<artifactId>avro</artifactId>
				<version>1.7.6</version>
			</dependency>
			<dependency>
				<groupId>org.apache.avro</groupId>
202
				<artifactId>avro-ipc</artifactId>
S
Stephan Ewen 已提交
203 204 205
				<version>1.7.6</version>
			</dependency>
			
206 207 208 209 210 211
			<!-- Make sure we use a consistent commons-cli version throughout the project -->
			<dependency>
				<groupId>commons-cli</groupId>
				<artifactId>commons-cli</artifactId>
				<version>1.2</version>
			</dependency>
212 213 214 215 216 217

			<dependency>
				<groupId>commons-io</groupId>
				<artifactId>commons-io</artifactId>
				<version>2.4</version>
			</dependency>
218
			
219 220 221 222 223 224 225
			<!-- common-collections is used by us and by hadoop, so we need to define a common version -->
			<dependency>
				<groupId>commons-collections</groupId>
				<artifactId>commons-collections</artifactId>
				<version>3.2.1</version>
			</dependency>
			
226
			<!-- Managed dependency required for HBase in flink-hbase -->
S
Stephan Ewen 已提交
227 228 229 230 231
			<dependency>
				<groupId>org.javassist</groupId>
				<artifactId>javassist</artifactId>
				<version>3.18.1-GA</version>
			</dependency>
232 233 234 235 236 237 238 239

			<!-- joda time is pulled in different versions by different transitive dependencies-->
			<dependency>
				<groupId>joda-time</groupId>
				<artifactId>joda-time</artifactId>
				<version>2.5</version>
			</dependency>

S
Stephan Ewen 已提交
240 241 242 243 244 245
			<!-- stax is pulled in different versions by different transitive dependencies-->
			<dependency>
				<groupId>stax</groupId>
				<artifactId>stax-api</artifactId>
				<version>1.0.1</version>
			</dependency>
S
Stephan Ewen 已提交
246 247 248 249 250 251 252
			
			<!-- kryo used in different versions by Flink an chill -->
			<dependency>
				<groupId>com.esotericsoftware.kryo</groupId>
				<artifactId>kryo</artifactId>
				<version>2.24.0</version>
			</dependency>
253

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
			<dependency>
				<groupId>org.scala-lang</groupId>
				<artifactId>scala-library</artifactId>
				<version>${scala.version}</version>
			</dependency>

			<dependency>
				<groupId>org.scala-lang</groupId>
				<artifactId>scala-reflect</artifactId>
				<version>${scala.version}</version>
			</dependency>

			<dependency>
				<groupId>org.scala-lang</groupId>
				<artifactId>scala-compiler</artifactId>
				<version>${scala.version}</version>
			</dependency>

			<dependency>
				<groupId>com.typesafe.akka</groupId>
274
				<artifactId>akka-actor_${scala.binary.version}</artifactId>
275 276 277 278 279
				<version>${akka.version}</version>
			</dependency>

			<dependency>
				<groupId>com.typesafe.akka</groupId>
280
				<artifactId>akka-remote_${scala.binary.version}</artifactId>
281 282 283 284 285
				<version>${akka.version}</version>
			</dependency>

			<dependency>
				<groupId>com.typesafe.akka</groupId>
286
				<artifactId>akka-slf4j_${scala.binary.version}</artifactId>
287 288 289 290 291
				<version>${akka.version}</version>
			</dependency>

			<dependency>
				<groupId>com.typesafe.akka</groupId>
292
				<artifactId>akka-camel_${scala.binary.version}</artifactId>
293 294 295 296 297
				<version>${akka.version}</version>
			</dependency>

			<dependency>
				<groupId>com.typesafe.akka</groupId>
298
				<artifactId>akka-testkit_${scala.binary.version}</artifactId>
299 300 301 302 303 304
				<version>${akka.version}</version>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>org.scalatest</groupId>
305
				<artifactId>scalatest_${scala.binary.version}</artifactId>
306 307 308 309 310 311
				<version>2.2.2</version>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.github.scopt</groupId>
312
				<artifactId>scopt_${scala.binary.version}</artifactId>
313 314 315 316 317 318 319 320
				<version>3.2.0</version>
				<exclusions>
					<exclusion>
						<groupId>org.scala-lang</groupId>
						<artifactId>scala-library</artifactId>
					</exclusion>
				</exclusions>
			</dependency>
S
Stephan Ewen 已提交
321 322
		</dependencies>
	</dependencyManagement>
323

324
	<profiles>
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
		<profile>
			<id>scala-2.10</id>
			<activation>
				<property>
					<!-- this is the default scala profile -->
					<name>!scala-2.11</name>
				</property>
			</activation>
			<properties>
				<scala.version>2.10.4</scala.version>
				<scala.binary.version>2.10</scala.binary.version>
			</properties>
		</profile>
		<profile>
			<id>scala-2.11</id>
			<activation>
				<property>
					<name>scala-2.11</name>
				</property>
			</activation>
			<properties>
				<scala.version>2.11.4</scala.version>
				<scala.binary.version>2.11</scala.binary.version>
			</properties>
		</profile>

351
		<profile>
352 353 354
			<id>hadoop-1</id>
			<activation>
				<property>
355
					<!-- Please do not remove the 'hadoop1' comment. See ./tools/generate_specific_pom.sh -->
356
					<!--hadoop1--><name>hadoop.profile</name><value>1</value>
357 358
				</property>
			</activation>
359
			<properties>
360
				<hadoop.version>${hadoop-one.version}</hadoop.version>
361
				<shading-artifact.name>flink-shaded-hadoop1</shading-artifact.name>
362
			</properties>
363 364
		</profile>
		<profile>
365
			<id>hadoop-2</id>
366
			<activation>
367
				<property>
368 369
					<!-- Please do not remove the 'hadoop2' comment. See ./tools/generate_specific_pom.sh -->
					<!--hadoop2--><name>!hadoop.profile</name>
370
				</property>
371
			</activation>
372
			<properties>
373
				<hadoop.version>${hadoop-two.version}</hadoop.version>
374
				<shading-artifact.name>flink-shaded-hadoop2</shading-artifact.name>
375
			</properties>
376
		</profile>
377

378 379 380 381 382 383 384 385
		<profile>
			<id>include-yarn</id>
			<activation>
				<property>
				<!-- Please do not remove the 'hadoop1' comment. See ./tools/generate_specific_pom.sh -->
				<!--hadoop2--><name>!hadoop.profile</name>
				</property>
			</activation>
386 387 388
			<properties>
				<shading-artifact.name>flink-shaded-include-yarn</shading-artifact.name>
			</properties>
389 390 391 392 393
			<modules>
				<module>flink-yarn</module>
				<module>flink-yarn-tests</module>
			</modules>
		</profile>
394

395
		<profile>
396 397 398 399
			<id>vendor-repos</id>
			<!-- Add vendor maven repositories -->
			<repositories>
				<!-- Cloudera -->
400 401 402 403 404 405 406 407 408 409
				<repository>
					<id>cloudera-releases</id>
					<url>https://repository.cloudera.com/artifactory/cloudera-repos</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
				</repository>
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
				<!-- Hortonworks -->
				<repository>
					<releases>
						<enabled>true</enabled>
						<updatePolicy>always</updatePolicy>
						<checksumPolicy>warn</checksumPolicy>
					</releases>
					<snapshots>
						<enabled>false</enabled>
						<updatePolicy>never</updatePolicy>
						<checksumPolicy>fail</checksumPolicy>
					</snapshots>
					<id>HDPReleases</id>
					<name>HDP Releases</name>
					<url>http://repo.hortonworks.com/content/repositories/releases/</url>
					<layout>default</layout>
				</repository>
				<!-- MapR -->
				<repository>
					<id>mapr-releases</id>
					<url>http://repository.mapr.com/maven/</url>
					<snapshots><enabled>false</enabled></snapshots>
					<releases><enabled>true</enabled></releases>
				</repository>
434 435
			</repositories>
		</profile>
436

437
		<profile>
438 439
			<!-- used for aggregating  ScalaDoc with JavaDoc -->
			<id>aggregate-scaladoc</id>
440 441
			<build>
				<plugins>
442 443 444 445 446 447 448 449 450 451 452 453 454

					<!-- We need to clean compiled classes to make sure that genjavadoc
					is called to generate our fake Java source from Scala source. -->
					<plugin>
						<artifactId>maven-clean-plugin</artifactId>
						<version>2.5</version><!--$NO-MVN-MAN-VER$-->
						<executions>
							<execution>
								<id>clean-target</id>
								<phase>generate-sources</phase>
								<goals>
									<goal>clean</goal>
								</goals>
455 456 457 458 459 460 461 462 463 464 465 466
								<configuration>
									<excludeDefaultDirectories>true</excludeDefaultDirectories>
									<filesets>
										<fileset>
											<directory>${project.build.directory}</directory>
											<includes>
												<include>**/*.class</include>
												<include>**/classes.*.timestamp</include>
											</includes>
										</fileset>
									</filesets>
								</configuration>
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
							</execution>
						</executions>
					</plugin>

					<plugin>
						<groupId>net.alchim31.maven</groupId>
						<artifactId>scala-maven-plugin</artifactId>
						<executions>
							<execution>
								<id>doc</id>
								<phase>generate-sources</phase>
								<goals>
									<goal>compile</goal>
								</goals>
							</execution>
						</executions>
						<configuration>
							<args>
								<arg>-P:genjavadoc:out=${project.build.directory}/genjavadoc</arg>
							</args>
							<compilerPlugins>
								<compilerPlugin>
									<groupId>com.typesafe.genjavadoc</groupId>
									<artifactId>genjavadoc-plugin_${scala.version}</artifactId>
									<version>0.8</version>
								</compilerPlugin>
							</compilerPlugins>
						</configuration>
					</plugin>
					<plugin>
						<groupId>org.codehaus.mojo</groupId>
						<artifactId>build-helper-maven-plugin</artifactId>
						<executions>
							<execution>
								<phase>generate-sources</phase>
								<goals>
									<goal>add-source</goal>
								</goals>
								<configuration>
									<sources>
										<source>${project.build.directory}/genjavadoc</source>
									</sources>
								</configuration>
							</execution>
						</executions>
					</plugin>
513 514 515 516 517 518 519 520 521
				</plugins>
			</build>
		</profile>

		<profile>
			<!-- used for SNAPSHOT and regular releases -->
			<id>docs-and-source</id>
			<build>
				<plugins>
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.2.1</version><!--$NO-MVN-MAN-VER$-->
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>2.9.1</version><!--$NO-MVN-MAN-VER$-->
						<configuration>
							<quiet>true</quiet>
						</configuration>
						<executions>
							<execution>
								<id>attach-javadocs</id>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
554
		
R
Robert Metzger 已提交
555 556
		<profile>
			<id>release</id>
R
Robert Metzger 已提交
557
				<build>
R
Robert Metzger 已提交
558
				<plugins>
R
Robert Metzger 已提交
559
					<plugin>
R
Robert Metzger 已提交
560 561 562 563
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-gpg-plugin</artifactId>
					<version>1.4</version>
					<executions>
R
Robert Metzger 已提交
564
						<execution>
R
Robert Metzger 已提交
565 566 567
						<id>sign-artifacts</id>
						<phase>verify</phase>
						<goals>
R
Robert Metzger 已提交
568
							<goal>sign</goal>
R
Robert Metzger 已提交
569
						</goals>
R
Robert Metzger 已提交
570
						</execution>
R
Robert Metzger 已提交
571
					</executions>
R
Robert Metzger 已提交
572
					</plugin>
R
Robert Metzger 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
				</plugins>
				<pluginManagement>
					<plugins>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-release-plugin</artifactId>
							<version>2.1</version>
							<configuration>
								<mavenExecutorId>forked-path</mavenExecutorId>
								<useReleaseProfile>false</useReleaseProfile>
								<arguments>${arguments} -Psonatype-oss-release</arguments>
							</configuration>
						</plugin>
					</plugins>
				</pluginManagement>
			</build>
		</profile>
R
Robert Metzger 已提交
590 591 592 593 594 595
		<profile>
			<id>jdk8</id>
				<activation>
					<activeByDefault>false</activeByDefault>
					<jdk>1.8</jdk>
				</activation>
A
Aljoscha Krettek 已提交
596
				<modules>
597
					<module>flink-java8</module>
A
Aljoscha Krettek 已提交
598
				</modules>
R
Robert Metzger 已提交
599 600 601 602 603
				<build>
					<plugins>
						<plugin>
							<groupId>org.apache.maven.plugins</groupId>
							<artifactId>maven-javadoc-plugin</artifactId>
604
							<version>2.9.1</version><!--$NO-MVN-MAN-VER$-->
R
Robert Metzger 已提交
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
							<configuration>
								<quiet>true</quiet>
							</configuration>
							<executions>
								<execution>
									<id>attach-javadocs</id>
									<goals>
										<goal>jar</goal>
									</goals>
									<configuration>
										<additionalparam>-Xdoclint:none</additionalparam>
									</configuration>
								</execution>
							</executions>
						</plugin>
					</plugins>
				</build>
		</profile>
623 624
	</profiles>

S
sewen 已提交
625 626
	<build>
		<plugins>
627 628 629
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
630
				<version>2.4</version><!--$NO-MVN-MAN-VER$-->
631 632 633 634 635 636 637 638 639
				<configuration>
					<archive>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
						</manifest>
					</archive>
				</configuration>
			</plugin>
S
Stephan Ewen 已提交
640
			
R
Robert Metzger 已提交
641 642 643
			<plugin>
				<groupId>org.apache.rat</groupId>
				<artifactId>apache-rat-plugin</artifactId>
644
				<version>0.10</version><!--$NO-MVN-MAN-VER$-->
645
				<inherited>false</inherited>
R
Robert Metzger 已提交
646 647 648 649 650 651 652 653 654 655 656
				<executions>
					<execution>
						<phase>verify</phase>
						<goals>
							<goal>check</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<excludeSubProjects>false</excludeSubProjects>
					<numUnapprovedLicenses>0</numUnapprovedLicenses>
657
					<licenses>
658
						<!-- Enforce this license:
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
							Licensed to the Apache Software Foundation (ASF) under one
							or more contributor license agreements.  See the NOTICE file
							distributed with this work for additional information
							regarding copyright ownership.  The ASF licenses this file
							to you under the Apache License, Version 2.0 (the
							"License"); you may not use this file except in compliance
							with the License.  You may obtain a copy of the License at

							  http://www.apache.org/licenses/LICENSE-2.0

							Unless required by applicable law or agreed to in writing,
							software distributed under the License is distributed on an
							"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
							KIND, either express or implied.  See the License for the
							specific language governing permissions and limitations
							under the License.
						-->
							<license implementation="org.apache.rat.analysis.license.SimplePatternBasedLicense">
							<licenseFamilyCategory>AL2 </licenseFamilyCategory>
							<licenseFamilyName>Apache License 2.0</licenseFamilyName>
							<notes />
							<patterns>
								<pattern>Licensed to the Apache Software Foundation (ASF) under one</pattern>
							</patterns>
						</license>
					</licenses>
					<licenseFamilies>
						<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
							<familyName>Apache License 2.0</familyName>
						</licenseFamily>
					</licenseFamilies>
R
Robert Metzger 已提交
690 691 692 693
					<excludes>
						<!-- Additional files like .gitignore etc.-->
						<exclude>**/.*</exclude>
						<exclude>**/*.prefs</exclude>
694
						<exclude>**/*.log</exclude>
695 696 697 698 699
						<!-- External web libraries. -->
						<exclude>docs/**/bootstrap*</exclude>
						<exclude>**/resources/**/font-awesome/**</exclude>
						<exclude>**/resources/**/jquery*</exclude>
						<exclude>**/resources/**/bootstrap*</exclude>
700 701 702 703 704
						<exclude>flink-clients/src/main/resources/web-docs/js/*d3.js</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/css/sb-admin.css</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/flot/*</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/jcanvas.min.js</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/timeline.js</exclude>
705 706 707 708
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/d3.min.js</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/d3.layout.min.js</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/js/rickshaw.*</exclude>
						<exclude>flink-runtime/src/main/resources/web-docs-infoserver/css/rickshaw.*</exclude>
709 710
						<!-- Test Data. -->
						<exclude>flink-tests/src/test/resources/testdata/terainput.txt</exclude>
711
						<exclude>flink-staging/flink-avro/src/test/resources/avro/*.avsc</exclude>
712
						<exclude>out/test/flink-avro/avro/user.avsc</exclude>
713
						<exclude>flink-staging/flink-avro/src/test/resources/testdata.avro</exclude>
714
						<exclude>flink-staging/flink-avro/src/test/java/org/apache/flink/api/io/avro/generated/*.java</exclude>
715
						<exclude>out/test/flink-avro/avro/user.avsc</exclude>
R
Robert Metzger 已提交
716
						<!-- Configuration Files. -->
717
						<exclude>**/flink-bin/conf/slaves</exclude>
718
                        <exclude>flink-contrib/docker-flink/flink/conf/slaves</exclude>
R
Robert Metzger 已提交
719
						<!-- Administrative files in the main trunk. -->
720
						<exclude>**/README.md</exclude>
R
Robert Metzger 已提交
721 722
						<exclude>CHANGELOG</exclude>
						<exclude>CONTRIBUTORS</exclude>
723
						<exclude>DEPENDENCIES</exclude>
724
						<!-- Build files -->
R
Robert Metzger 已提交
725
						<exclude>**/*.iml</exclude>
726
						<exclude>flink-quickstart/**/testArtifact/goal.txt</exclude>
R
Robert Metzger 已提交
727 728
						<!-- Generated content -->
						<exclude>**/target/**</exclude>
729
						<exclude>docs/_site/**</exclude>
730
						<exclude>**/scalastyle-output.xml</exclude>
731
						<exclude>build-target/**</exclude>
732
						<!-- Tools: watchdog -->
733
						<exclude>tools/artifacts/**</exclude>
R
Robert Metzger 已提交
734 735 736
					</excludes>
				</configuration>
			</plugin>
737 738 739 740 741
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<version>2.12.1</version>
				<executions>
R
Robert Metzger 已提交
742 743 744 745 746 747 748 749
					<execution>
						<id>validate</id>
						<phase>validate</phase>
						<goals>
							<goal>check</goal>
						</goals>
					</execution>
				</executions>
A
alex 已提交
750
				<configuration>
751 752 753
					<suppressionsLocation>/tools/maven/suppressions.xml</suppressionsLocation>
					<suppressionsFileExpression>/checkstyle.suppressions.file</suppressionsFileExpression>
					<configLocation>/tools/maven/checkstyle.xml</configLocation>
A
alex 已提交
754 755
					<logViolationsToConsole>true</logViolationsToConsole>
				</configuration>
756
			</plugin>
S
sewen 已提交
757
			<plugin>
758
				<!-- just define the Java version to be used for compiling and plugins -->
S
sewen 已提交
759 760
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
761
				<version>3.1</version><!--$NO-MVN-MAN-VER$-->
S
sewen 已提交
762 763 764
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
765 766 767
					<!-- The output of Xlint is not show by default, but we activate it for the QA bot
					to be able to get more warnings -->
					<compilerArgument>-Xlint:all</compilerArgument>
S
sewen 已提交
768 769 770
				</configuration>
			</plugin>
			<plugin>
771
				<artifactId>maven-failsafe-plugin</artifactId>
772
				<version>2.17</version><!--$NO-MVN-MAN-VER$-->
773 774 775 776 777 778 779 780
				<executions>
					<execution>
						<goals>
							<goal>integration-test</goal>
							<goal>verify</goal>
						</goals>
					</execution>
				</executions>
S
sewen 已提交
781
				<configuration>
A
Aljoscha Krettek 已提交
782
					<forkCount>${flink.forkCount}</forkCount>
783
					<reuseForks>false</reuseForks>
A
Aljoscha Krettek 已提交
784 785 786 787 788
					<systemPropertyVariables>
						<!-- we need the "0" in front here because for some reason
						  the property is null when we have just the variable-->
						<forkNumber>0${surefire.forkNumber}</forkNumber>
					</systemPropertyVariables>
789
					<argLine>-Xms256m -Xmx800m -Dlog4j.configuration=${log4j.configuration} -Dmvn.forkNumber=${surefire.forkNumber} -XX:-UseGCOverheadLimit</argLine>
S
sewen 已提交
790 791 792
				</configuration>
			</plugin>
			<plugin>
793 794
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
A
Aljoscha Krettek 已提交
795
				<version>2.17</version><!--$NO-MVN-MAN-VER$-->
S
sewen 已提交
796
				<configuration>
A
Aljoscha Krettek 已提交
797 798 799 800 801
					<forkCount>${flink.forkCount}</forkCount>
					<reuseForks>${flink.reuseForks}</reuseForks>
					<systemPropertyVariables>
						<forkNumber>0${surefire.forkNumber}</forkNumber>
					</systemPropertyVariables>
802
					<argLine>-Xms256m -Xmx800m -Dlog4j.configuration=${log4j.configuration} -Dmvn.forkNumber=${surefire.forkNumber} -XX:-UseGCOverheadLimit</argLine>
S
sewen 已提交
803 804 805 806 807
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
808
				<version>2.8</version>
S
sewen 已提交
809 810 811 812
				<configuration>
					<classpathContainers>
						<classpathContainer>
							org.eclipse.jdt.launching.JRE_CONTAINER
813
						</classpathContainer>
S
sewen 已提交
814
					</classpathContainers>
R
Robert Metzger 已提交
815 816
					<downloadSources>true</downloadSources>
					<downloadJavadocs>true</downloadJavadocs>
S
sewen 已提交
817 818
				</configuration>
			</plugin>
819 820 821
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-enforcer-plugin</artifactId>
822
				<version>1.3.1</version><!--$NO-MVN-MAN-VER$-->
823 824 825 826 827 828 829 830 831
				<executions>
					<execution>
						<id>enforce-maven</id>
						<goals>
							<goal>enforce</goal>
						</goals>
						<configuration>
							<rules>
								<requireMavenVersion>
R
Robert Metzger 已提交
832 833
									<!-- enforce at least mvn version 3.0.3 -->
									<version>[3.0.3,)</version>
834 835 836 837 838 839
								</requireMavenVersion>
							</rules>
						</configuration>
					</execution>
				</executions>
			</plugin>
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887

			<!-- We use shading in all packages for relocating some classes, such as
				Guava and ASM.
				By doing so, users adding Flink as a dependency won't run into conflicts.
				(For example users can use whatever guava version they want, because we don't
				expose our guava dependency)
			-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-shade-plugin</artifactId>
				<version>2.3</version>
				<executions>
					<execution>
						<id>shade-flink</id>
						<phase>package</phase>
						<goals>
							<goal>shade</goal>
						</goals>
						<configuration>
							<shadeTestJar>true</shadeTestJar>
							<shadedArtifactAttached>false</shadedArtifactAttached>
							<createDependencyReducedPom>true</createDependencyReducedPom>
							<dependencyReducedPomLocation>${project.basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
							<artifactSet>
								<includes>
									<include>com.google.guava:*</include>
									<include>org.ow2.asm:*</include>
								</includes>
							</artifactSet>
							<relocations>
								<relocation>
									<pattern>com.google</pattern>
									<shadedPattern>org.apache.flink.shaded.com.google</shadedPattern>
									<excludes>
										<exclude>com.google.protobuf.**</exclude>
										<exclude>com.google.inject.**</exclude>
									</excludes>
								</relocation>
								<relocation>
									<pattern>org.objectweb.asm</pattern>
									<shadedPattern>org.apache.flink.shaded.org.objectweb.asm</shadedPattern>
								</relocation>
							</relocations>
						</configuration>
					</execution>
				</executions>
			</plugin>

S
sewen 已提交
888
		</plugins>
R
Robert Metzger 已提交
889 890 891 892 893 894 895

		<!--
		Disable git-commit-id-plugin in eclipse
		See https://github.com/stratosphere/stratosphere/pull/231#issuecomment-27896187
		-->
		<pluginManagement>
			<plugins>
R
Robert Metzger 已提交
896
				<!--This plugin's configuration is used to store Eclipse m2e settings
R
Robert Metzger 已提交
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
					only. It has no influence on the Maven build itself. -->
				<plugin>
					<groupId>org.eclipse.m2e</groupId>
					<artifactId>lifecycle-mapping</artifactId>
					<version>1.0.0</version>
					<configuration>
						<lifecycleMappingMetadata>
							<pluginExecutions>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											pl.project13.maven
										</groupId>
										<artifactId>
											git-commit-id-plugin
										</artifactId>
										<versionRange>
											[2.1.5,)
										</versionRange>
										<goals>
											<goal>revision</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
C
Christoph Bruecke 已提交
921
										<ignore/>
R
Robert Metzger 已提交
922 923
									</action>
								</pluginExecution>
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>
											org.apache.maven.plugins
										</groupId>
										<artifactId>
											maven-checkstyle-plugin
										</artifactId>
										<versionRange>
											[2.12.1,)
										</versionRange>
										<goals>
											<goal>check</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
940 941 942 943 944 945 946 947 948 949 950 951 952 953
										<ignore />
									</action>
								</pluginExecution>
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-enforcer-plugin</artifactId>
										<versionRange>[1.0.0,)</versionRange>
										<goals>
											<goal>enforce</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
954 955
									</action>
								</pluginExecution>
956 957 958 959 960 961 962 963 964 965 966 967 968
								<pluginExecution>
									<pluginExecutionFilter>
										<groupId>org.apache.maven.plugins</groupId>
										<artifactId>maven-remote-resources-plugin</artifactId>
										<versionRange>[0.0.0,)</versionRange>
										<goals>
											<goal>process</goal>
										</goals>
									</pluginExecutionFilter>
									<action>
										<ignore />
									</action>
								</pluginExecution>
R
Robert Metzger 已提交
969 970 971 972 973 974
							</pluginExecutions>
						</lifecycleMappingMetadata>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
S
sewen 已提交
975 976
	</build>
</project>