Skip to content

Commit 18c29dd

Browse files
authored
Upgrade Avro to 1.9.2 (#36)
* Upgrade Avro to 1.9.2 Resolves #25 * fix a misspelled group name
1 parent dd023d7 commit 18c29dd

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

pom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@
3636

3737
<dependencyManagement>
3838
<dependencies>
39+
<dependency>
40+
<groupId>com.fasterxml.jackson</groupId>
41+
<artifactId>jackson-bom</artifactId>
42+
<version>2.11.0.rc1</version>
43+
<scope>import</scope>
44+
<type>pom</type>
45+
</dependency>
3946
<dependency>
4047
<groupId>org.springframework.cloud</groupId>
4148
<artifactId>spring-cloud-stream</artifactId>

spring-cloud-schema-registry-client/pom.xml

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<artifactId>spring-cloud-schema-registry-client</artifactId>
1111
<properties>
12-
<avro.version>1.8.2</avro.version>
12+
<avro.version>1.9.2</avro.version>
1313
</properties>
1414

1515
<dependencies>
@@ -65,6 +65,12 @@
6565
<dependency>
6666
<groupId>com.fasterxml.jackson.dataformat</groupId>
6767
<artifactId>jackson-dataformat-avro</artifactId>
68+
<exclusions>
69+
<exclusion>
70+
<groupId>org.apache.avro</groupId>
71+
<artifactId>avro</artifactId>
72+
</exclusion>
73+
</exclusions>
6874
<scope>test</scope>
6975
</dependency>
7076
</dependencies>

spring-cloud-schema-registry-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>org.apache.avro</groupId>
3333
<artifactId>avro</artifactId>
34-
<version>1.8.1</version>
34+
<version>1.9.2</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)