Open apache-hb opened 3 years ago
in the example build.sbt the code
build.sbt
scalateTemplateConfig in Compile := { val base = (sourceDirectory in Compile).value
is presented, this syntax has been deprecated and should be replaced with
Compile / scalateTemplateConfig := { val base = (Compile / sourceDirectory).value
in the example
build.sbt
the codeis presented, this syntax has been deprecated and should be replaced with