pom.xml 4.2 KB
Newer Older
G
Gyula Fora 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2 3 4 5 6 7 8 9 10 11 12 13 14
<!--
  Licensed 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. See accompanying LICENSE file.
-->
G
Gyula Fora 已提交
15 16 17 18 19
<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>

20 21 22 23 24 25
	<parent>
		<groupId>org.apache.flink</groupId>
		<artifactId>flink-addons</artifactId>
		<version>0.6-incubating-SNAPSHOT</version>
		<relativePath>..</relativePath>
	</parent>
26

27
	<artifactId>flink-streaming-parent</artifactId>
M
mbalassi 已提交
28
	<name>flink-streaming</name>
29 30 31
	<packaging>pom</packaging>

	<modules>
M
mbalassi 已提交
32 33 34
		<module>flink-streaming-core</module>
		<module>flink-streaming-examples</module>
		<module>flink-streaming-connectors</module>
35
	</modules>
M
mbalassi 已提交
36
	
G
Gyula Fora 已提交
37 38
	<dependencies>
		<dependency>
M
mbalassi 已提交
39 40
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-core</artifactId>
41
            		<version>${project.version}</version>
42
			<type>jar</type>
G
Gyula Fora 已提交
43 44
		</dependency>
		<dependency>
M
mbalassi 已提交
45 46
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-tests</artifactId>
47
			<version>${project.version}</version>
48
			<type>jar</type>
G
Gyula Fora 已提交
49 50
		</dependency>
		<dependency>
M
mbalassi 已提交
51 52
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-compiler</artifactId>
53
			<version>${project.version}</version>
54
			<type>jar</type>
G
Gyula Fora 已提交
55 56
		</dependency>
		<dependency>
M
mbalassi 已提交
57 58
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-runtime</artifactId>
59
			<version>${project.version}</version>
60
			<type>jar</type>
G
Gyula Fora 已提交
61 62
		</dependency>
		<dependency>
M
mbalassi 已提交
63 64
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-clients</artifactId>
65
			<version>${project.version}</version>
66
			<type>jar</type>
G
Gyula Fora 已提交
67
		</dependency>
M
Márton Balassi 已提交
68
		<dependency>
M
mbalassi 已提交
69 70
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-java</artifactId>
71
			<version>${project.version}</version>
72
			<type>jar</type>
M
Márton Balassi 已提交
73
		</dependency>
G
Gyula Fora 已提交
74 75 76 77
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.7</version>
78
			<type>jar</type>
G
Gyula Fora 已提交
79
		</dependency>
80 81 82 83
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>3.3.2</version>
84
			<type>jar</type>
85
		</dependency>
86 87 88 89 90 91 92
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.1.1</version>
			<type>jar</type>
			<scope>compile</scope>
		</dependency>
93
		<dependency>
94 95 96
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.16</version>
97
			<type>jar</type>
Y
Yingjun Wu 已提交
98
		</dependency>
M
Márton Balassi 已提交
99 100 101 102 103
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-all</artifactId>
			<version>1.8.5</version>
			<scope>test</scope>
104
			<type>jar</type>
M
Márton Balassi 已提交
105
  		</dependency>
G
Gyula Fora 已提交
106 107
	</dependencies>

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	<!-- See main pom.xml for explanation of profiles -->
	<profiles>
		<profile>
			<id>hadoop-1</id>
			<activation>
				<property>
					<!-- Please do not remove the 'hadoop1' comment. See ./tools/generate_specific_pom.sh -->
					<!--hadoop1--><name>!hadoop.profile</name>
				</property>
			</activation>
			<modules>
				<!-- No extra modules: pact-hbase is currently not compatible with Hadoop v1 -->
			</modules>
		</profile>
		<profile>
			<id>hadoop-2</id>
			<activation>
				<property>
					<!-- Please do not remove the 'hadoop1' comment. See ./tools/generate_specific_pom.sh -->
					<!--hadoop2--><name>hadoop.profile</name><value>2</value>
				</property>
			</activation>
			<modules>
				<module>flink-hbase</module>
			</modules>
		</profile>
		<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><value>2</value>
				</property>
			</activation>
			<modules>
				<module>flink-yarn</module>
			</modules>
		</profile>
	</profiles>

G
Gyula Fora 已提交
148
</project>