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
6 changes: 3 additions & 3 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerinax"
name = "confluent.cavroserdes"
version = "1.0.1"
version = "1.0.2"
authors = ["Ballerina"]
export=["confluent.cavroserdes"]
keywords = ["confluent", "schema_registry", "avro", "serdes"]
Expand All @@ -18,5 +18,5 @@ graalvmCompatible = true
[[platform.java21.dependency]]
groupId = "io.ballerina.lib"
artifactId = "confluent.cavroserdes-native"
version = "1.0.1"
path = "../native/build/libs/confluent.cavroserdes-native-1.0.1.jar"
version = "1.0.2"
path = "../native/build/libs/confluent.cavroserdes-native-1.0.2.jar"
4 changes: 2 additions & 2 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "confluent.cavroserdes"
version = "1.0.1"
version = "1.0.2"
dependencies = [
{org = "ballerina", name = "avro"},
{org = "ballerina", name = "http"},
Expand All @@ -373,7 +373,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "confluent.cregistry"
version = "0.3.0"
version = "0.4.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"}
]
Expand Down
2 changes: 1 addition & 1 deletion ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import org.apache.tools.ant.taskdefs.condition.Os

plugins {
id 'io.ballerina.plugin'
id "io.ballerina.plugin" version "${ballerinaGradlePluginVersion}"
}

description = 'Confluent Avro Serialization - Ballerina'
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ task buildExamples {
}

task build {
dependsOn buildExamples
// dependsOn buildExamples
}

buildExamples.dependsOn ":confluent.cavroserdes-ballerina:build"
Expand Down
2 changes: 1 addition & 1 deletion examples/kafka-avro-consumer/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
org = "wso2"
name = "kafka_avro_consumer"
version = "0.1.0"
distribution = "2201.10.0"
distribution = "2201.11.0"

[build-options]
observabilityIncluded = true
2 changes: 1 addition & 1 deletion examples/kafka-avro-producer/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
org = "wso2"
name = "kafka_avro_producer"
version = "0.1.0"
distribution = "2201.10.0"
distribution = "2201.11.0"

[build-options]
observabilityIncluded = true
13 changes: 6 additions & 7 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.2-SNAPSHOT
version=1.0.3-SNAPSHOT
ballerinaLangVersion=2201.11.0

checkstylePluginVersion=10.12.0
Expand All @@ -11,16 +11,15 @@ releasePluginVersion=2.8.0
ballerinaGradlePluginVersion=2.3.0
jacocoVersion=0.8.10

slf4jVersion=1.7.21
jacksonVersion=2.17.0
jacksonVersion=2.18.1
avroVersion=1.11.4
kafkaAvroVersion=5.3.0
kafkaClientVersion=3.7.2
kafkaSchemaRegistryVersion=5.3.2
commonConfigVersion=4.1.0
commonUtilsVersion=5.3.0
kafkaSchemaRegistryVersion=7.8.0
commonConfigVersion=7.8.0
commonUtilsVersion=7.8.0

stdlibIoVersion=1.7.0
stdlibAvroVersion=1.1.2
stdlibHttpVersion=2.13.2
cRegistryVersion=0.3.0
cRegistryVersion=0.4.0
1 change: 0 additions & 1 deletion native/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ dependencies {

implementation group: 'org.ballerinalang', name: 'ballerina-runtime', version: "${ballerinaLangVersion}"
implementation group: 'org.ballerinalang', name: 'ballerina-lang', version: "${ballerinaLangVersion}"
implementation group: 'org.ballerinalang', name: 'value', version: "${ballerinaLangVersion}"

implementation group: 'org.apache.kafka', name: 'kafka-clients', version: "${kafkaClientVersion}"
implementation group: 'org.apache.avro', name: 'avro', version: "${avroVersion}"
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ pluginManagement {
}

repositories {
mavenCentral()
gradlePluginPortal()
maven {
url = 'https://maven.pkg.github.com/ballerina-platform/*'
Expand Down
Loading