|
| 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 | + |
| 20 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | + |
| 24 | + <parent> |
| 25 | + <artifactId>flink-connector-aws-e2e-tests-parent</artifactId> |
| 26 | + <groupId>org.apache.flink</groupId> |
| 27 | + <version>5.1-SNAPSHOT</version> |
| 28 | + </parent> |
| 29 | + |
| 30 | + <modelVersion>4.0.0</modelVersion> |
| 31 | + |
| 32 | + <artifactId>flink-connector-dynamodb-e2e-tests</artifactId> |
| 33 | + <name>Flink : Connectors : AWS : E2E Tests : Amazon DynamoDB</name> |
| 34 | + <packaging>jar</packaging> |
| 35 | + |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>org.apache.flink</groupId> |
| 39 | + <artifactId>flink-streaming-java</artifactId> |
| 40 | + <version>${flink.version}</version> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.apache.flink</groupId> |
| 46 | + <artifactId>flink-table-api-java</artifactId> |
| 47 | + <version>${flink.version}</version> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.apache.flink</groupId> |
| 53 | + <artifactId>flink-table-runtime</artifactId> |
| 54 | + <version>${flink.version}</version> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + |
| 58 | + <dependency> |
| 59 | + <groupId>org.apache.flink</groupId> |
| 60 | + <artifactId>flink-table-planner-loader</artifactId> |
| 61 | + <version>${flink.version}</version> |
| 62 | + <scope>test</scope> |
| 63 | + </dependency> |
| 64 | + |
| 65 | + <dependency> |
| 66 | + <groupId>org.apache.flink</groupId> |
| 67 | + <artifactId>flink-connector-dynamodb</artifactId> |
| 68 | + <version>${project.version}</version> |
| 69 | + <scope>test</scope> |
| 70 | + </dependency> |
| 71 | + |
| 72 | + <dependency> |
| 73 | + <groupId>org.apache.flink</groupId> |
| 74 | + <artifactId>flink-connector-aws-base</artifactId> |
| 75 | + <version>${project.version}</version> |
| 76 | + <scope>test</scope> |
| 77 | + </dependency> |
| 78 | + |
| 79 | + <dependency> |
| 80 | + <groupId>org.apache.flink</groupId> |
| 81 | + <artifactId>flink-sql-connector-dynamodb</artifactId> |
| 82 | + <version>${project.version}</version> |
| 83 | + <scope>test</scope> |
| 84 | + </dependency> |
| 85 | + |
| 86 | + <!-- Other third-party dependencies --> |
| 87 | + <dependency> |
| 88 | + <groupId>com.google.guava</groupId> |
| 89 | + <artifactId>guava</artifactId> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + |
| 93 | + <dependency> |
| 94 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 95 | + <artifactId>jackson-databind</artifactId> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + |
| 99 | + <dependency> |
| 100 | + <groupId>com.fasterxml.jackson.datatype</groupId> |
| 101 | + <artifactId>jackson-datatype-jsr310</artifactId> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>software.amazon.awssdk</groupId> |
| 107 | + <artifactId>s3</artifactId> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + |
| 111 | + <dependency> |
| 112 | + <groupId>software.amazon.awssdk</groupId> |
| 113 | + <artifactId>dynamodb</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
| 116 | + |
| 117 | + <dependency> |
| 118 | + <groupId>software.amazon.awssdk</groupId> |
| 119 | + <artifactId>dynamodb-enhanced</artifactId> |
| 120 | + <scope>test</scope> |
| 121 | + </dependency> |
| 122 | + </dependencies> |
| 123 | +</project> |
0 commit comments