Skip to content

Commit

Permalink
Bump up versions (#42)
Browse files Browse the repository at this point in the history
- spring-boot 3.3.2 -> 3.4.0
- spring-cloud 2023.0.3 -> 2024.0.0
- jqwik 1.7.0 -> 1.9.2
  • Loading branch information
chanhyeong authored Dec 9, 2024
1 parent cfe7ef5 commit 56b733c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion buildSrc/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
springBootVersion=3.3.2
springBootVersion=3.4.0
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
import io.cloudevents.core.provider.EventFormatProvider;
import io.cloudevents.kafka.CloudEventDeserializer;
import io.cloudevents.kafka.CloudEventSerializer;
import kafka.server.KafkaConfig;

import com.navercorp.eventeria.messaging.contract.Message;
import com.navercorp.eventeria.messaging.contract.cloudevents.converter.CloudEventToMessageConverter;
Expand All @@ -75,9 +74,9 @@ class CloudEventKafkaTest {
.kafkaPorts(0)
.brokerProperties(
Map.of(
KafkaConfig.OffsetsTopicReplicationFactorProp(), "1",
KafkaConfig.TransactionsTopicReplicationFactorProp(), "1",
KafkaConfig.TransactionsTopicMinISRProp(), "1"
"offsets.topic.replication.factor", "1",
"transaction.state.log.replication.factor", "1",
"transaction.state.log.min.isr", "1"
)
);
BROKER.afterPropertiesSet();
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
jqwikVersion=1.7.0
springCloudVersion=2023.0.3
jqwikVersion=1.9.2
springCloudVersion=2024.0.0
cloudEventVersion=4.0.1

0 comments on commit 56b733c

Please sign in to comment.