Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ graalvmCompatible=true

[[platform.java21.dependency]]
groupId = "io.ballerina.lib.cdc"
artifactId = "cdc-native-1.0.1-SNAPSHOT"
version = "1.0.1-SNAPSHOT"
path = "../native/build/libs/cdc-native-1.0.1-SNAPSHOT.jar"
artifactId = "cdc-native-1.0.1"
version = "1.0.1"
path = "../native/build/libs/cdc-native-1.0.1.jar"

[[platform.java21.dependency]]
groupId = "io.debezium"
Expand Down
2 changes: 1 addition & 1 deletion ballerina/CompilerPlugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ id = "cdc-compiler-plugin"
class = "io.ballerina.lib.cdc.compiler.CdcCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/cdc-compiler-plugin-1.0.1-SNAPSHOT.jar"
path = "../compiler-plugin/build/libs/cdc-compiler-plugin-1.0.1.jar"
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.caching=true
group=io.ballerina.lib
version=1.0.1-SNAPSHOT
version=1.0.2-SNAPSHOT

checkstylePluginVersion=10.12.0
spotbugsPluginVersion=6.0.18
Expand All @@ -12,7 +12,7 @@ testngVersion=7.6.1

debeziumVersion=3.0.8.Final
kafkaVersion=3.9.0
# This version should be the one packed with debezium
# This ver should be the one packed with debezium
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# This ver should be the one packed with debezium
# This version should be the one packed with debezium

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah this is intentional. The word version is failing the workflow.

fasterxmlVersion=2.16.2
gsonVersion=2.10.1

Expand Down