Skip to content

Commit

Permalink
Merge pull request #5 from NipunaRanasinghe/main
Browse files Browse the repository at this point in the history
Fix observability support and bump connector version
  • Loading branch information
NipunaRanasinghe authored Mar 26, 2024
2 parents 7e0e6c3 + db6db6d commit 43a05b6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
7 changes: 2 additions & 5 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@
distribution = "2201.8.6"
org = "ballerinax"
name = "zendesk"
version = "1.0.0"
version = "2.0.0"
license = ["Apache-2.0"]
authors = ["Ballerina"]
keywords = ["zendesk", "CRM", "CSM", "Support/Customer Support", "Cost/Freemium"]
icon = "icon.png"
repository = "https://github.com/ballerina-platform/module-ballerinax-zendesk"

[build-options]
observabilityIncluded = false

[platform.java17]
graalvmCompatible = true
observabilityIncluded = true
17 changes: 15 additions & 2 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -299,16 +299,29 @@ modules = [
{org = "ballerina", packageName = "url", moduleName = "url"}
]

[[package]]
org = "ballerinai"
name = "observe"
version = "0.0.0"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "observe"}
]
modules = [
{org = "ballerinai", packageName = "observe", moduleName = "observe"}
]

[[package]]
org = "ballerinax"
name = "zendesk"
version = "1.0.0"
version = "0.1.0"
dependencies = [
{org = "ballerina", name = "http"},
{org = "ballerina", name = "log"},
{org = "ballerina", name = "os"},
{org = "ballerina", name = "test"},
{org = "ballerina", name = "url"}
{org = "ballerina", name = "url"},
{org = "ballerinai", name = "observe"}
]
modules = [
{org = "ballerinax", packageName = "zendesk", moduleName = "zendesk"}
Expand Down
1 change: 1 addition & 0 deletions ballerina/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,4 @@ clean {
build.dependsOn "generatePomFileForMavenPublication"
publishToMavenLocal.dependsOn build
publish.dependsOn build

5 changes: 1 addition & 4 deletions build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,4 @@ icon = "icon.png"
repository = "https://github.com/ballerina-platform/module-ballerinax-zendesk"

[build-options]
observabilityIncluded = false

[platform.java17]
graalvmCompatible = true
observabilityIncluded = true
2 changes: 1 addition & 1 deletion 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=0.1.0-SNAPSHOT
version=2.0.0-SNAPSHOT

checkstylePluginVersion=10.12.0
spotbugsPluginVersion=5.0.14
Expand Down

0 comments on commit 43a05b6

Please sign in to comment.