Skip to content

Commit

Permalink
Merge pull request #15 from Nuvindu/revamped
Browse files Browse the repository at this point in the history
Add `byte` support for the module
  • Loading branch information
Nuvindu authored May 13, 2024
2 parents 0d0047c + 6205b51 commit 64f5404
Show file tree
Hide file tree
Showing 80 changed files with 5,275 additions and 436 deletions.
12 changes: 3 additions & 9 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerina"
name = "avro"
version = "0.1.2"
version = "0.1.3"
authors = ["Ballerina"]
export=["avro"]
keywords = ["avro", "serialization", "deserialization", "serdes"]
Expand All @@ -18,8 +18,8 @@ graalvmCompatible = true
[[platform.java17.dependency]]
groupId = "io.ballerina.lib"
artifactId = "avro-native"
version = "0.1.2"
path = "../native/build/libs/avro-native-0.1.2.jar"
version = "0.1.3"
path = "../native/build/libs/avro-native-0.1.3-SNAPSHOT.jar"

[[platform.java17.dependency]]
groupId = "org.apache.avro"
Expand All @@ -44,9 +44,3 @@ groupId = "com.fasterxml.jackson.core"
artifactId = "jackson-databind"
version = "2.17.0"
path = "./lib/jackson-databind-2.17.0.jar"

[[platform.java11.dependency]]
groupId = "com.fasterxml.jackson.dataformat"
artifactId = "jackson-dataformat-avro"
version = "2.17.0"
path = "./lib/jackson-dataformat-avro-2.17.0.jar"
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ distribution-version = "2201.9.0"
[[package]]
org = "ballerina"
name = "avro"
version = "0.1.2"
version = "0.1.3"
dependencies = [
{org = "ballerina", name = "io"},
{org = "ballerina", name = "jballerina.java"},
Expand Down
3 changes: 0 additions & 3 deletions ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ dependencies {
externalJars(group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "${jacksonVersion}") {
transitive = false
}
externalJars(group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-avro', version: "${jacksonVersion}") {
transitive = false
}
}

task updateTomlFiles {
Expand Down
Loading

0 comments on commit 64f5404

Please sign in to comment.