feat: project to play with simpler fragments

my problem was - thinking that th:fragment is not rendered
but it is, and i get null poniter error, because argument is not there

the object under name used in fragment should already be available, for
example take out of th:each
This commit is contained in:
efim
2023-06-29 15:20:59 +00:00
parent 2dff41f428
commit 7fac41488c
8 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
val toolkitV = "0.1.7"
val toolkit = "org.scala-lang" %% "toolkit" % toolkitV
val toolkitTest = "org.scala-lang" %% "toolkit-test" % toolkitV
ThisBuild / scalaVersion := "3.2.2"
libraryDependencies += toolkit
libraryDependencies += (toolkitTest % Test)
libraryDependencies += "org.thymeleaf" % "thymeleaf" % "3.1.1.RELEASE"