pom.xml 2.2 KB
Newer Older
F
faisalmoeen 已提交
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
F
faisalmoeen 已提交
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
		<groupId>org.apache.flink</groupId>
27
		<artifactId>flink-staging</artifactId>
28
		<version>1.0-SNAPSHOT</version>
F
faisalmoeen 已提交
29 30 31
		<relativePath>..</relativePath>
	</parent>

32 33
	<artifactId>flink-hadoop-compatibility</artifactId>
	<name>flink-hadoop-compatibility</name>
F
faisalmoeen 已提交
34 35 36 37 38

	<packaging>jar</packaging>

	<dependencies>
		<dependency>
39 40
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-java</artifactId>
F
faisalmoeen 已提交
41 42 43 44
			<version>${project.version}</version>
		</dependency>
		
		<dependency>
45 46
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-clients</artifactId>
F
faisalmoeen 已提交
47 48
			<version>${project.version}</version>
		</dependency>
49 50 51 52 53 54 55
		
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>${shading-artifact.name}</artifactId>
			<version>${project.version}</version>
		</dependency>

56 57 58 59 60 61
		<dependency>
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-tests</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
62
		<dependency>
63 64
			<groupId>org.apache.flink</groupId>
			<artifactId>flink-test-utils</artifactId>
65 66 67
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
F
faisalmoeen 已提交
68 69
	</dependencies>
</project>