Skip to content

Commit a19c731

Browse files
author
JeanMarc van Leerdam
committed
Update some more dependency versions
1 parent be6876b commit a19c731

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ in your `build.sbt` provide values for the assembly and azure-functions plugins:
2626
2727
// you need this dependency to be able to use the annotations
2828
libraryDependencies ++= Seq(
29-
"com.microsoft.azure.functions" % "azure-functions-java-library" % "1.3.1"
29+
"com.microsoft.azure.functions" % "azure-functions-java-library" % "3.1.0"
3030
)
3131
3232
)

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ lazy val plugin = project.in(file("plugin"))
4141
"-Ywarn-adapted-args"
4242
),
4343
libraryDependencies ++= Seq(
44-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.0",
45-
"com.microsoft.azure" % "azure-tools-common" % "0.10.0",
46-
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
47-
"com.microsoft.azure.functions" % "azure-functions-java-library" % "1.3.1" % "test",
48-
"org.scalatest" %% "scalatest" % "3.2.2" % "test",
44+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.19.2",
45+
"com.microsoft.azure" % "azure-tools-common" % "0.14.0",
46+
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
47+
"com.microsoft.azure.functions" % "azure-functions-java-library" % "3.1.0" % "test",
48+
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
4949
"org.scala-sbt" %% "scripted-plugin" % sbtVersion.value
5050
),
5151
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1"),

plugin/src/sbt-test/sbt-azure-functions/deploy/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ lazy val root = (project in file("."))
55
version := "0.1",
66
scalaVersion := "2.12.18",
77
libraryDependencies ++= Seq(
8-
"com.microsoft.azure.functions" % "azure-functions-java-library" % "1.3.1"
8+
"com.microsoft.azure.functions" % "azure-functions-java-library" % "3.1.0"
99
),
1010
assembly / assemblyJarName := "ScalaFunctions.jar",
1111
azfunFunctionAppName := "rd-scala-functions",

plugin/src/sbt-test/sbt-azure-functions/simple/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ lazy val root = (project in file("."))
55
version := "0.1",
66
scalaVersion := "2.12.18",
77
libraryDependencies ++= Seq(
8-
"com.microsoft.azure.functions" % "azure-functions-java-library" % "1.3.1"
8+
"com.microsoft.azure.functions" % "azure-functions-java-library" % "3.1.0"
99
),
1010
assembly / assemblyJarName := "ScalaFunctions.jar",
1111
azfunFunctionAppName := "rd-scala-functions",

showcase/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ lazy val root = (project in file("."))
33
name := "showcase",
44
version := "1.0",
55
libraryDependencies ++= Seq(
6-
"com.microsoft.azure.functions" % "azure-functions-java-library" % "1.3.1"
6+
"com.microsoft.azure.functions" % "azure-functions-java-library" % "3.1.0"
77
)
88
)

0 commit comments

Comments
 (0)