pom.xml 11.8 KB
Newer Older
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 12 13 14 15 16 17 18
  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.
19
-->
20
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 22 23 24 25
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

	<modelVersion>4.0.0</modelVersion>

	<parent>
26 27
		<groupId>org.apache.flink</groupId>
		<artifactId>flink-parent</artifactId>
R
Robert Metzger 已提交
28
		<version>1.1-SNAPSHOT</version>
29 30 31
		<relativePath>..</relativePath>
	</parent>

32
	<artifactId>flink-runtime_2.10</artifactId>
33
	<name>flink-runtime</name>
34 35 36

	<packaging>jar</packaging>

37 38 39
	<properties>
		<metrics.version>3.1.0</metrics.version>
	</properties>
40

41 42
	<dependencies>
		<dependency>
43 44
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-core</artifactId>
45 46
			<version>${project.version}</version>
		</dependency>
47

48 49 50 51 52 53 54 55
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-core</artifactId>
			<version>${project.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>

56 57 58 59 60
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-java</artifactId>
			<version>${project.version}</version>
		</dependency>
61 62 63 64 65 66
		
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>${shading-artifact.name}</artifactId>
			<version>${project.version}</version>
		</dependency>
67 68 69 70

		<dependency>
			<groupId>commons-cli</groupId>
			<artifactId>commons-cli</artifactId>
71
		</dependency>
72

73 74 75
		<dependency>
			<groupId>io.netty</groupId>
			<artifactId>netty-all</artifactId>
76
			<!-- Version is set in root POM -->
77 78 79 80 81 82 83
		</dependency>

		<!-- See: https://groups.google.com/forum/#!msg/netty/-aAPDBNUnDg/SkGOXL2Ma2QJ -->
		<dependency>
			<groupId>org.javassist</groupId>
			<artifactId>javassist</artifactId>
			<!-- Version is set in root POM -->
84
		</dependency>
85

86 87 88 89 90
		<dependency>
			<groupId>com.google.guava</groupId>
			<artifactId>guava</artifactId>
			<version>${guava.version}</version>
		</dependency>
91

92 93 94
		<dependency>
			<groupId>org.ow2.asm</groupId>
			<artifactId>asm-all</artifactId>
95
			<version>${asm.version}</version>
96 97
		</dependency>
		
98 99 100 101 102 103 104
		<dependency>
			<groupId>org.scala-lang</groupId>
			<artifactId>scala-library</artifactId>
		</dependency>

		<dependency>
			<groupId>com.typesafe.akka</groupId>
105
			<artifactId>akka-actor_${scala.binary.version}</artifactId>
106 107 108 109
		</dependency>

		<dependency>
			<groupId>com.typesafe.akka</groupId>
110
			<artifactId>akka-remote_${scala.binary.version}</artifactId>
111
		</dependency>
112 113 114

		<dependency>
			<groupId>com.typesafe.akka</groupId>
115
			<artifactId>akka-slf4j_${scala.binary.version}</artifactId>
116 117
		</dependency>

118 119
		<dependency>
			<groupId>com.typesafe.akka</groupId>
120
			<artifactId>akka-testkit_${scala.binary.version}</artifactId>
121 122
		</dependency>

123 124 125 126 127
		<dependency>
			<groupId>org.clapper</groupId>
			<artifactId>grizzled-slf4j_${scala.binary.version}</artifactId>
		</dependency>

128 129
		<dependency>
			<groupId>org.scalatest</groupId>
130
			<artifactId>scalatest_${scala.binary.version}</artifactId>
131 132
		</dependency>

133 134
		<dependency>
			<groupId>com.github.scopt</groupId>
135
			<artifactId>scopt_${scala.binary.version}</artifactId>
T
Till Rohrmann 已提交
136 137 138 139 140 141
			<exclusions>
				<exclusion>
					<groupId>org.scala-lang</groupId>
					<artifactId>scala-library</artifactId>
				</exclusion>
			</exclusions>
142
		</dependency>
143

144 145 146 147 148 149 150 151 152 153
		<dependency>
			<groupId>io.dropwizard.metrics</groupId>
			<artifactId>metrics-core</artifactId>
			<version>${metrics.version}</version>
		</dependency>
		<dependency>
			<groupId>io.dropwizard.metrics</groupId>
			<artifactId>metrics-jvm</artifactId>
			<version>${metrics.version}</version>
		</dependency>
154

155 156 157 158 159
		<dependency>
			<groupId>io.dropwizard.metrics</groupId>
			<artifactId>metrics-json</artifactId>
			<version>${metrics.version}</version>
		</dependency>
160

161 162 163 164 165
		<dependency>
			<groupId>org.apache.zookeeper</groupId>
			<artifactId>zookeeper</artifactId>
		</dependency>

166 167 168 169 170 171 172 173 174 175 176 177
		<!--
		The KryoSerializer dynamically loads Kryo instances via Chill and requires that Chill
		is in the classpath. Because we do not want to have transitive Scala dependencies
		in Flink's API modules (such as flink-java) due to Chill, Chill is added to flink-runtime
		to ensure that Chill is always present in the classpath.
		-->
		<dependency>
			<groupId>com.twitter</groupId>
			<artifactId>chill_${scala.binary.version}</artifactId>
			<version>${chill.version}</version>
		</dependency>

178
		<dependency>
179
			<groupId>org.apache.flink</groupId>
180
			<artifactId>flink-shaded-curator-recipes</artifactId>
181
			<version>${project.version}</version>
182
		</dependency>
183 184 185 186
		
		<dependency>
			<groupId>org.apache.curator</groupId>
			<artifactId>curator-test</artifactId>
187 188
			<version>${curator.version}</version>
			<scope>test</scope>
189
		</dependency>
190 191 192 193
	</dependencies>

	<build>
		<plugins>
194 195 196 197 198 199 200
			<!-- Scala Compiler -->
			<plugin>
				<groupId>net.alchim31.maven</groupId>
				<artifactId>scala-maven-plugin</artifactId>
				<version>3.1.4</version>
				<executions>
					<!-- Run scala compiler in the process-resources phase, so that dependencies on
201
						scala classes can be resolved later in the (Java) compile phase -->
202 203 204 205 206 207 208 209 210
					<execution>
						<id>scala-compile-first</id>
						<phase>process-resources</phase>
						<goals>
							<goal>compile</goal>
						</goals>
					</execution>

					<!-- Run scala compiler in the process-test-resources phase, so that dependencies on
211
						 scala classes can be resolved later in the (Java) test-compile phase -->
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
					<execution>
						<id>scala-test-compile</id>
						<phase>process-test-resources</phase>
						<goals>
							<goal>testCompile</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<jvmArgs>
						<jvmArg>-Xms128m</jvmArg>
						<jvmArg>-Xmx512m</jvmArg>
					</jvmArgs>
				</configuration>
			</plugin>

			<!-- Eclipse Integration -->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-eclipse-plugin</artifactId>
				<version>2.8</version>
				<configuration>
					<downloadSources>true</downloadSources>
					<projectnatures>
						<projectnature>org.scala-ide.sdt.core.scalanature</projectnature>
						<projectnature>org.eclipse.jdt.core.javanature</projectnature>
					</projectnatures>
					<buildcommands>
						<buildcommand>org.scala-ide.sdt.core.scalabuilder</buildcommand>
					</buildcommands>
					<classpathContainers>
						<classpathContainer>org.scala-ide.sdt.launching.SCALA_CONTAINER</classpathContainer>
						<classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
					</classpathContainers>
					<excludes>
						<exclude>org.scala-lang:scala-library</exclude>
						<exclude>org.scala-lang:scala-compiler</exclude>
					</excludes>
					<sourceIncludes>
						<sourceInclude>**/*.scala</sourceInclude>
						<sourceInclude>**/*.java</sourceInclude>
					</sourceIncludes>
				</configuration>
			</plugin>

			<!-- Adding scala source directories to build path -->
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>build-helper-maven-plugin</artifactId>
				<version>1.7</version>
				<executions>
					<!-- Add src/main/scala to eclipse build path -->
					<execution>
						<id>add-source</id>
						<phase>generate-sources</phase>
						<goals>
							<goal>add-source</goal>
						</goals>
						<configuration>
							<sources>
								<source>src/main/scala</source>
							</sources>
						</configuration>
					</execution>
					<!-- Add src/test/scala to eclipse build path -->
					<execution>
						<id>add-test-source</id>
						<phase>generate-test-sources</phase>
						<goals>
							<goal>add-test-source</goal>
						</goals>
						<configuration>
							<sources>
								<source>src/test/scala</source>
							</sources>
						</configuration>
					</execution>
				</executions>
			</plugin>

292
			<!-- Scala Code Style, most of the configuration done via plugin management -->
293 294 295 296 297 298 299 300
			<plugin>
				<groupId>org.scalastyle</groupId>
				<artifactId>scalastyle-maven-plugin</artifactId>
				<configuration>
					<configLocation>${project.basedir}/../tools/maven/scalastyle-config.xml</configLocation>
				</configuration>
			</plugin>

301 302 303 304
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
305
					<reuseForks>false</reuseForks>
306 307 308 309 310 311 312 313 314 315 316 317 318 319
					<!-- <workingDirectory>${project.build.testOutputDirectory}</workingDirectory> -->
					<excludes>
						<exclude>**/TestData.java</exclude>
						<exclude>**/TestInstanceListener.java</exclude>
					</excludes>
					<systemPropertyVariables>
						<log.level>WARN</log.level>
					</systemPropertyVariables>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-failsafe-plugin</artifactId>
				<configuration>
320
					<reuseForks>false</reuseForks>
321 322 323 324 325 326 327 328 329 330
					<excludes>
						<exclude>**/TestData.java</exclude>
					</excludes>
					<systemPropertyVariables>
						<log.level>WARN</log.level>
					</systemPropertyVariables>
				</configuration>
			</plugin>
			<plugin>
				<!-- Description: https://github.com/ktoso/maven-git-commit-id-plugin
T
Till Rohrmann 已提交
331
					Used to show the git ref when starting the jobManager. -->
332 333 334 335 336 337 338 339 340 341 342 343 344 345
				<groupId>pl.project13.maven</groupId>
				<artifactId>git-commit-id-plugin</artifactId>
				<version>2.1.5</version>
				<executions>
					<execution>
						<goals>
							<goal>revision</goal>
						 </goals>
					</execution>
				</executions>
				<configuration>
					<dotGitDirectory>${project.basedir}/../../.git</dotGitDirectory>
					<generateGitPropertiesFile>true</generateGitPropertiesFile>
					<skipPoms>false</skipPoms>
346
					<failOnNoGitDirectory>false</failOnNoGitDirectory>
347
					<generateGitPropertiesFilename>src/main/resources/.version.properties</generateGitPropertiesFilename>
348 349 350 351
					<gitDescribe>
						<!-- don't generate the describe property -->
						<skip>true</skip>
					</gitDescribe>
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
				</configuration>
			</plugin>
			<!-- Add version to jar http://stackoverflow.com/questions/2712970/how-to-get-maven-artifact-version-at-runtime
				-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jar-plugin</artifactId>
				<inherited>true</inherited>
				<configuration>
					<archive>
						<manifest>
							<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
							<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
						</manifest>
					</archive>
				</configuration>
368 369 370 371 372 373 374
				<executions>
					<execution>
						<goals>
							<goal>test-jar</goal>
						</goals>
					</execution>
				</executions>
375
			</plugin>
376 377 378 379 380 381 382 383 384 385 386 387

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-shade-plugin</artifactId>
				<executions>
					<execution>
						<id>shade-flink</id>
						<phase>package</phase>
						<goals>
							<goal>shade</goal>
						</goals>
						<configuration>
388
						
389 390
							<artifactSet>
								<includes combine.children="append">
391
									<include>org.apache.flink:flink-shaded-curator-recipes</include>
392 393 394 395 396 397 398 399 400 401 402 403
								</includes>
							</artifactSet>
							<relocations combine.children="append">
								<relocation>
									<pattern>org.apache.curator</pattern>
									<shadedPattern>org.apache.flink.shaded.org.apache.curator</shadedPattern>
								</relocation>
							</relocations>
						</configuration>
					</execution>
				</executions>
			</plugin>
404 405 406
		</plugins>
	</build>
</project>