ihji / sbt-antlr4

Antlr4 plugin for sbt 1.1+ and 0.13.x
57 stars 35 forks source link

Fix SBT 1.1.0 SettingKey vs. settingKey error. #19

Closed jaa127 closed 6 years ago

jaa127 commented 6 years ago

Change all SettingKey and TaskKey to settingKey and taskKey. This fixes #18 which is caused by SBT 1.1.0 new handling of SettingKey and TaskKey.

[error] Caused by: java.lang.IllegalArgumentException:
requirement failed: A named attribute key must start with
a lowercase letter: Foo

SBT issue: https://github.com/sbt/sbt/issues/3788

ihji commented 6 years ago

@jaa127 LGTM. Thanks for the PR.