Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .github/workflows/build-with-bal-test-graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ jobs:
uses: ballerina-platform/ballerina-library/.github/workflows/build-with-bal-test-graalvm-template.yml@main
secrets: inherit
with:
additional_windows_build_flags: -x test
additional_ubuntu_build_flags: -x :cdc-examples:build
additional_windows_build_flags: -x test -x :cdc-examples:build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Ballerina CDC Connector
===================

[![Build](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/ci.yml/badge.svg)](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/ci.yml)
[![Build](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/build-timestamped-master.yml/badge.svg)](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/build-timestamped-master.yml)
[![Trivy](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/trivy-scan.yml/badge.svg)](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/trivy-scan.yml)
[![codecov](https://codecov.io/gh/ballerina-platform/module-ballerinax-cdc/branch/main/graph/badge.svg)](https://codecov.io/gh/ballerina-platform/module-ballerinax-cdc)
[![GraalVM Check](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/build-with-bal-test-graalvm.yml/badge.svg)](https://github.com/ballerina-platform/module-ballerinax-cdc/actions/workflows/build-with-bal-test-graalvm.yml)
Expand Down
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
Loading