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 3ad9880 commit 2212335Copy full SHA for 2212335
build.sbt
@@ -68,8 +68,8 @@ lazy val plugin = project.in(file("plugin"))
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"
+ val dt = java.time.LocalDateTime.now.format(java.time.format.DateTimeFormatter.ofPattern("yyyyMMdd_HHmmss"))
+ s"$o:$n:$v:$dt"
73
},
74
75
scalaVersion := "2.12.18",
0 commit comments