Skip to content

Commit

Permalink
Bumped dependencies (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
phearnot authored Oct 24, 2024
1 parent fcd4e75 commit caf9fb6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ git.useGitDescribe := true
git.baseVersion := "1.0.0"
git.uncommittedSignifier := Some("DIRTY")

scalaVersion := "2.13.14"
scalaVersion := "2.13.15"
organization := "network.units"
organizationName := "Units Network"
name := "consensus-client"
maintainer := "Units Network Team"
resolvers ++= Resolver.sonatypeOssRepos("releases") ++ Resolver.sonatypeOssRepos("snapshots") ++ Seq(Resolver.mavenLocal)
libraryDependencies ++= Seq(
"com.wavesplatform" % "node-testkit" % "1.5.8-SNAPSHOT" % "test",
"com.wavesplatform" % "node" % "1.5.8-SNAPSHOT" % "provided",
"com.softwaremill.sttp.client3" % "core_2.13" % "3.9.8",
"com.softwaremill.sttp.client3" %% "play-json" % "3.9.8",
"com.wavesplatform" % "node-testkit" % "1.5.8" % "test",
"com.wavesplatform" % "node" % "1.5.8" % "provided",
"com.softwaremill.sttp.client3" % "core_2.13" % "3.10.1",
"com.softwaremill.sttp.client3" %% "play-json" % "3.10.1",
"com.github.jwt-scala" %% "jwt-play-json" % "10.0.1"
)

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG baseImage=wavesplatform/wavesnode:1.5.7
ARG baseImage=ghcr.io/wavesplatform/waves:1.5.8-1
FROM $baseImage
COPY target /tmp/
RUN tar zxvf /tmp/consensus-client.tgz -C $WAVES_INSTALL_PATH --strip-components=1
2 changes: 1 addition & 1 deletion docker/services/waves-node.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
waves-node:
container_name: waves-node
image: consensus-client:local
image: ghcr.io/unitsnetwork/consensus-client:testnet
stop_grace_period: 5m
ports:
- "6869:6869"
Expand Down

0 comments on commit caf9fb6

Please sign in to comment.