Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #309 from aashikam/build-fail
Browse files Browse the repository at this point in the history
Fix build failure
  • Loading branch information
aashikam authored Oct 13, 2022
2 parents 75f79bd + 7355fb8 commit 5a59fbb
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "ballerinax"
name = "stan"
version = "2.4.0"
version = "2.4.1"
authors = ["Ballerina"]
keywords = ["service", "client", "messaging", "network", "streaming"]
repository = "https://github.com/ballerina-platform/module-ballerinax-stan"
Expand All @@ -16,13 +16,13 @@ path = "./lib/java-nats-streaming-2.2.3.jar"
path = "./lib/jnats-2.8.0.jar"

[[platform.java11.dependency]]
path = "./lib/protobuf-java-3.20.1.jar"
path = "./lib/protobuf-java-3.20.3.jar"

[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
artifactId = "stan-native"
version = "2.4.0"
path = "../native/build/libs/stan-native-2.4.0.jar"
version = "2.4.1"
path = "../native/build/libs/stan-native-2.4.1-SNAPSHOT.jar"

[build-options]
observabilityIncluded=true
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 = "stan-compiler-plugin"
class = "io.ballerina.stdlib.stan.plugin.StanCompilerPlugin"

[[dependency]]
path = "../compiler-plugin/build/libs/stan-compiler-plugin-2.4.0.jar"
path = "../compiler-plugin/build/libs/stan-compiler-plugin-2.4.1-SNAPSHOT.jar"
6 changes: 3 additions & 3 deletions ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies-toml-version = "2"
[[package]]
org = "ballerina"
name = "crypto"
version = "2.2.2"
version = "2.2.3"
dependencies = [
{org = "ballerina", name = "jballerina.java"},
{org = "ballerina", name = "time"}
Expand Down Expand Up @@ -72,7 +72,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "log"
version = "2.4.0"
version = "2.4.1"
scope = "testOnly"
dependencies = [
{org = "ballerina", name = "io"},
Expand Down Expand Up @@ -127,7 +127,7 @@ modules = [
[[package]]
org = "ballerinax"
name = "stan"
version = "2.4.0"
version = "2.4.1"
dependencies = [
{org = "ballerina", name = "crypto"},
{org = "ballerina", name = "jballerina.java"},
Expand Down
2 changes: 1 addition & 1 deletion ballerina/tests/server/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:
- 4224:4222
- 8224:8222
nats-streaming-tls:
image: nats-streaming:latest
image: nats-streaming:0.24.6
hostname: nats-streaming-tls
command: "-sc /server.conf"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "./lib/java-nats-streaming-2.2.3.jar"
path = "./lib/jnats-2.8.0.jar"

[[platform.java11.dependency]]
path = "./lib/protobuf-java-3.20.1.jar"
path = "./lib/protobuf-java-3.20.3.jar"

[[platform.java11.dependency]]
groupId = "io.ballerina.stdlib"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ext.puppycrawlCheckstyleVersion = project.puppycrawlCheckstyleVersion
ext.slf4jVersion = "1.7.30"
ext.natsVersion = "2.8.0"
ext.natsStreamingVersion = "2.2.3"
ext.protobufVersion = "3.20.1"
ext.protobufVersion = "3.20.3"
ext.stdlibCryptoVersion = project.stdlibCryptoVersion
ext.stdlibLogVersion = project.stdlibLogVersion
ext.stdlibTimeVersion = project.stdlibTimeVersion
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ puppycrawlCheckstyleVersion=8.18
testngVersion=7.4.0
ballerinaGradlePluginVersion=0.15.0

stdlibCryptoVersion=2.2.2
stdlibCryptoVersion=2.2.3-20220921-105400-812e99d
stdlibLogVersion=2.4.0
stdlibTimeVersion=2.2.2
stdlibIoVersion=1.3.0
Expand Down

0 comments on commit 5a59fbb

Please sign in to comment.