pom.xml 2.2 KB
Newer Older
G
Gyula Fora 已提交
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
-->
G
Gyula Fora 已提交
20 21 22 23 24
<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">

	<modelVersion>4.0.0</modelVersion>

25 26 27
	<parent>
		<groupId>org.apache.flink</groupId>
		<artifactId>flink-addons</artifactId>
28
		<version>0.8-incubating-SNAPSHOT</version>
29 30
		<relativePath>..</relativePath>
	</parent>
31

32
	<artifactId>flink-streaming-parent</artifactId>
M
mbalassi 已提交
33
	<name>flink-streaming</name>
34 35 36
	<packaging>pom</packaging>

	<modules>
M
mbalassi 已提交
37 38 39
		<module>flink-streaming-core</module>
		<module>flink-streaming-examples</module>
		<module>flink-streaming-connectors</module>
40
	</modules>
M
mbalassi 已提交
41
	
G
Gyula Fora 已提交
42 43
	<dependencies>
		<dependency>
M
mbalassi 已提交
44 45
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-core</artifactId>
46
			<version>${project.version}</version>
G
Gyula Fora 已提交
47
		</dependency>
M
mbalassi 已提交
48

G
Gyula Fora 已提交
49
		<dependency>
M
mbalassi 已提交
50 51
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-compiler</artifactId>
52
			<version>${project.version}</version>
G
Gyula Fora 已提交
53
		</dependency>
M
mbalassi 已提交
54

G
Gyula Fora 已提交
55
		<dependency>
M
mbalassi 已提交
56 57
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-runtime</artifactId>
58
			<version>${project.version}</version>
G
Gyula Fora 已提交
59
		</dependency>
M
mbalassi 已提交
60

G
Gyula Fora 已提交
61
		<dependency>
M
mbalassi 已提交
62 63
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-clients</artifactId>
64
			<version>${project.version}</version>
G
Gyula Fora 已提交
65
		</dependency>
M
mbalassi 已提交
66

M
Márton Balassi 已提交
67
		<dependency>
M
mbalassi 已提交
68 69
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-java</artifactId>
70
			<version>${project.version}</version>
M
Márton Balassi 已提交
71
		</dependency>
G
Gyula Fora 已提交
72 73 74
	</dependencies>

</project>