|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +Licensed to the Apache Software Foundation (ASF) under one |
| 4 | +or more contributor license agreements. See the NOTICE file |
| 5 | +distributed with this work for additional information |
| 6 | +regarding copyright ownership. The ASF licenses this file |
| 7 | +to you under the Apache License, Version 2.0 (the |
| 8 | +"License"); you may not use this file except in compliance |
| 9 | +with the License. You may obtain a copy of the License at |
| 10 | +
|
| 11 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +
|
| 13 | +Unless required by applicable law or agreed to in writing, software |
| 14 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +See the License for the specific language governing permissions and |
| 17 | +limitations under the License. |
| 18 | +--> |
| 19 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | + |
| 22 | + <modelVersion>4.0.0</modelVersion> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <groupId>org.apache.flink</groupId> |
| 26 | + <artifactId>flink-filesystems</artifactId> |
| 27 | + <version>2.2-SNAPSHOT</version> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <artifactId>flink-s3-fs-native</artifactId> |
| 31 | + <name>Flink : FileSystems : S3 FS Native</name> |
| 32 | + <packaging>jar</packaging> |
| 33 | + |
| 34 | + <properties> |
| 35 | + <aws.sdk.v2.version>2.25.64</aws.sdk.v2.version> |
| 36 | + <japicmp.skip>true</japicmp.skip> |
| 37 | + </properties> |
| 38 | + |
| 39 | + <dependencies> |
| 40 | + <!-- Flink core FileSystem API --> |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.flink</groupId> |
| 43 | + <artifactId>flink-core</artifactId> |
| 44 | + <version>${project.version}</version> |
| 45 | + <scope>provided</scope> |
| 46 | + </dependency> |
| 47 | + |
| 48 | + <!-- AWS SDK v2 (S3 + STS + auth) --> |
| 49 | + <dependency> |
| 50 | + <groupId>software.amazon.awssdk</groupId> |
| 51 | + <artifactId>s3</artifactId> |
| 52 | + <version>${aws.sdk.v2.version}</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>software.amazon.awssdk</groupId> |
| 56 | + <artifactId>sts</artifactId> |
| 57 | + <version>${aws.sdk.v2.version}</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>software.amazon.awssdk</groupId> |
| 61 | + <artifactId>auth</artifactId> |
| 62 | + <version>${aws.sdk.v2.version}</version> |
| 63 | + </dependency> |
| 64 | + |
| 65 | + <!-- test --> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.flink</groupId> |
| 68 | + <artifactId>flink-test-utils</artifactId> |
| 69 | + <version>${project.version}</version> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + </dependencies> |
| 73 | + |
| 74 | + <build> |
| 75 | + <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-deploy-plugin</artifactId> |
| 79 | + <configuration> |
| 80 | + <skip>true</skip> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | + |
| 86 | +</project> |
| 87 | + |
| 88 | + |
0 commit comments