Skip to content

Commit a1de8e4

Browse files
authored
Merge pull request #16 from ballerina-platform/dev
Add missing configs needed for mssql listener
2 parents 3c28f7c + e6805ab commit a1de8e4

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

ballerina/Ballerina.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
org = "ballerinax"
33
name = "cdc"
4-
version = "1.0.1"
4+
version = "1.0.2"
55
distribution = "2201.12.0"
66
authors = ["Ballerina"]
77
repository = "https://github.com/ballerina-platform/module-ballerinax-cdc"
@@ -15,9 +15,9 @@ graalvmCompatible=true
1515

1616
[[platform.java21.dependency]]
1717
groupId = "io.ballerina.lib.cdc"
18-
artifactId = "cdc-native-1.0.1"
19-
version = "1.0.1"
20-
path = "../native/build/libs/cdc-native-1.0.1.jar"
18+
artifactId = "cdc-native-1.0.2-SNAPSHOT"
19+
version = "1.0.2-SNAPSHOT"
20+
path = "../native/build/libs/cdc-native-1.0.2-SNAPSHOT.jar"
2121

2222
[[platform.java21.dependency]]
2323
groupId = "io.debezium"

ballerina/CompilerPlugin.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ id = "cdc-compiler-plugin"
33
class = "io.ballerina.lib.cdc.compiler.CdcCompilerPlugin"
44

55
[[dependency]]
6-
path = "../compiler-plugin/build/libs/cdc-compiler-plugin-1.0.1.jar"
6+
path = "../compiler-plugin/build/libs/cdc-compiler-plugin-1.0.2-SNAPSHOT.jar"

ballerina/Dependencies.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ modules = [
174174
[[package]]
175175
org = "ballerinax"
176176
name = "cdc"
177-
version = "1.0.1"
177+
version = "1.0.2"
178178
dependencies = [
179179
{org = "ballerina", name = "crypto"},
180180
{org = "ballerina", name = "data.jsondata"},

examples/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ echo "Processing examples in the examples directory..."
7474
cd "$BAL_EXAMPLES_DIR"
7575
for dir in $(find "$BAL_EXAMPLES_DIR" -type d -maxdepth 1 -mindepth 1); do
7676
# Skip the build directory
77-
if [[ "$dir" == *build/ ]]; then
77+
if [[ "$(basename "$dir")" == "build" ]]; then
7878
continue
7979
fi
8080
echo "Processing example: $dir"

native/src/main/resources/META-INF/native-image/io.ballerina.lib/cdc-native/reflect-config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
"methods":[{"name":"<init>","parameterTypes":["java.util.Properties"] }]
3636
},
3737
{
38-
"name":"io.debezium.schema.SchemaTopicNamingStrategy"
38+
"name":"io.debezium.schema.SchemaTopicNamingStrategy",
39+
"methods":[{"name":"<init>","parameterTypes":["java.util.Properties"] }]
3940
},
4041
{
4142
"name":"io.debezium.snapshot.SnapshotterService",

0 commit comments

Comments
 (0)