We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d7b510 commit 3ad9880Copy full SHA for 3ad9880
build.sbt
@@ -64,6 +64,14 @@ lazy val plugin = project.in(file("plugin"))
64
.settings(
65
name := "sbt-azure-functions",
66
commonSettings,
67
+ sonaDeploymentName := {
68
+ val o = organization.value
69
+ val n = name.value
70
+ val v = version.value
71
+ val time = java.time.LocalTime.now.format(java.time.format.DateTimeFormatter.ofPattern("HHmmss"))
72
+ s"$o:$n:$v:$time"
73
+ },
74
+
75
scalaVersion := "2.12.18",
76
pluginCrossBuild / sbtVersion := {
77
scalaBinaryVersion.value match {
0 commit comments