From some sbt document(e.g. scopes), I see:
{.}/*:name
means name
in entire build
(use name in ThisBuild
to define it)
*/*:name
means name
in global project
(use name in Global
to define it)
(PS: I ignored the config part *:
)
But, I still don't know what is the difference between them, they seem exactly the same to me.
Is there any thing I can do with one rather than another one?