Skip to content

Commit

Permalink
[FLINK-24358][formats] Fix flink-avro-glue-schema-registry dependency…
Browse files Browse the repository at this point in the history
… convergence.
  • Loading branch information
xintongsong committed Sep 24, 2021
1 parent 36ff71f commit 3acf726
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions flink-formats/flink-avro-glue-schema-registry/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,45 @@ under the License.
<properties>
<glue.schema.registry.version>1.1.2</glue.schema.registry.version>
<aws.sdkv2.version>2.16.92</aws.sdkv2.version>
<netty.version>4.1.63.Final</netty.version>
<kotlin.version>1.3.50</kotlin.version>
</properties>

<!-- ============================= -->
<!-- DEPENDENCY MANAGEMENT -->
<!-- ============================= -->
<dependencyManagement>
<dependencies>
<!-- dependencies to solve enforcer check issue -->
<!-- can be removed once new version of Glue Schema Registry releases -->

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
</dependency>

<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>${kotlin.version}</version>
</dependency>

</dependencies>
</dependencyManagement>

<dependencies>
<!-- core dependencies -->

Expand Down

0 comments on commit 3acf726

Please sign in to comment.