-
Notifications
You must be signed in to change notification settings - Fork 225
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
Update build.scala to build.sbt #186
Conversation
|
👍 |
|
||
val g8version = "0.6.9-SNAPSHOT" | ||
|
||
lazy val buildSettings = lsSettings ++ Seq( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It appears that the lsSettings
weren't carried over—if discontinuing publishing metadata to ls was a conscious decision because ls might be dead (#179), I think we could additionally remove some cruft:
- The
ls-sbt
plugin that's being loaded. - JSON metadata files in
app/src/main/ls
,library/src/main/ls
, etc. - Concatenate the files in
notes
into oneCHANGELOG.md
?
This is a separate matter from removing the library support for ls version lookups, which is the subject of #179.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
notes/
are for notes.implicit.ly.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh.
And about ls?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm all for cleaning up ls stuff.
ls is unmaintained (foundweekends#179) and since foundweekends#186 we've removed the configuration to publish metadata there. Seems there's no longer a need to keep around the sbt plugin and old metadata, then.
Fixes #184