-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation for sbt-plugin scroogeBuildOptions is out of date #287
Comments
Thanks for the report, @dossett. Are you interested in fixing the documentation? |
Hi @yufangong I would be happy to, once i figure out how to use the new type. Do you know of any examples of the verbose option being set with the new type? |
Thank you and apologize for the out-dated doc. Not sure if this will answer your question, but, we have two |
Thank you! If I'm understanding that PR correctly, adding a verbose option would require creating a new |
Just to clarify @yufangong what I mean is that it used to be possible to pass the verbose flag to scrooge with: But now it does not seem possible to enable that flag at all. A code change, not just a document update, would be required. Something like Thank you again! |
@dossett Agreed, couldn't find the verbose option in the plugin. I think what you said above is correct. |
The documentation refers to
scroogeBuildOptions
as aSeq[String]
but it is now something related toSeq[ServiceOption]
, see: https://github.com/twitter/scrooge/blob/develop/scrooge-sbt-plugin/src/main/scala/com/twitter/ScroogeSBT.scala#L64If it possible to add options by creating
ServiceOption
s that should be explained too.The text was updated successfully, but these errors were encountered: