You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rendering, the value of each entry in BuildInfo is added as a comment. If the value contains special characters (e.g. "/*) the comment becomes malformed and breaks compilation.
/** The value is "Some git comment blabla/* and more comment" */
val gitComment = "Some git comment blabla/* and more comment"
The code comment above is malformed (at least in some versions of scala) since the initial /** is considered unclosed.
When rendering, the value of each entry in BuildInfo is added as a comment. If the value contains special characters (e.g. "/*) the comment becomes malformed and breaks compilation.
The code comment above is malformed (at least in some versions of scala) since the initial
/**
is considered unclosed.See
sbt-buildinfo/src/main/scala/sbtbuildinfo/ScalaCaseObjectRenderer.scala
Line 56 in cf23257
sbt-buildinfo/src/main/scala/sbtbuildinfo/JavaRenderer.scala
Line 26 in cf23257
The text was updated successfully, but these errors were encountered: