sbt / sbt-buildinfo

I know this because build.sbt knows this.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build info in HTML format?

opened this issue · comments

I'd like to generate a simple HTML report of the build info with an SBT task. I'd like to run this task during the CI build and publish the result as report; the idea is to have a short overview about the latest build, in particular show the latest version.

I know that the plugin doesn't support this currently, but would it be easy to add this feature?

Not sure how easy but see #98 for custom renderer.

@eed3si9n Thanks. This only lets me replace the current renderer, however, but I'd like to render to a case object as well as to an HTML file. I can't just delegate to the Scala render either, because ScalaCaseObjectRenderer is package private. Perhaps you could make it public? Or is there another way to obtain an instance of that renderer?