Skip to content

Commit

Permalink
Upgrade Avro to 1.9.2
Browse files Browse the repository at this point in the history
  Resolves spring-cloud#25
  • Loading branch information
tzolov committed Apr 23, 2020
1 parent dd023d7 commit 8626568
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.11.0.rc1</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion spring-cloud-schema-registry-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<artifactId>spring-cloud-schema-registry-client</artifactId>
<properties>
<avro.version>1.8.2</avro.version>
<avro.version>1.9.2</avro.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -65,6 +65,12 @@
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-avro</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.agro</groupId>
<artifactId>avro</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion spring-cloud-schema-registry-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.8.1</version>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 8626568

Please sign in to comment.