-
Notifications
You must be signed in to change notification settings - Fork 521
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
migrate to sbt 1.0.2 #77
Conversation
Codecov Report
@@ Coverage Diff @@
## master #77 +/- ##
==========================================
+ Coverage 84.63% 84.91% +0.27%
==========================================
Files 18 18
Lines 358 358
Branches 21 21
==========================================
+ Hits 303 304 +1
+ Misses 55 54 -1 |
build.sbt
Outdated
logBuffered in Test := false, | ||
|
||
headers := Map( |
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.
Where did these go on the upgraded versions of sbt-header?
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.
This is auto-detected from other settings now.
I think provided will keep it in pom.xml while compile-time won't. I think. |
@dwijnand isn't AFAIK when you want to exclude something from the Here's what I did for pomPostProcess := { (node: xml.Node) =>
new RuleTransformer(new RewriteRule {
override def transform(node: xml.Node): Seq[xml.Node] = node match {
case e: Elem
if e.label == "dependency" && e.child.exists(child => child.label == "groupId" && child.text == "org.scoverage") => Nil
case _ => Seq(node)
}
}).transform(node).head
},
|
What do you mean by "the default, aka the strongest dependency possible"? It's an ad-hoc configuration created in this build (and cats). It's an alternative to doing |
It is true that |
Well, I think it was in cats - typelevel/cats#1638, sbt/sbt#2503 perhaps this would help typelevel/cats#1889 ? |
I have reinstated the configuration now. |
Gets rid of this funny "compile-time" hack because sbt 1.0.x complains about something.
I have it on good notice that "provided" should be Good Enough™.