Jean-Luc Deprez

Results 34 comments of Jean-Luc Deprez

Thanks for the work-around. Looks like because of below code, in my case it kept on downloading the sbt supporting dependencies. https://github.com/sbt/sbt/blob/34933827d119bcc6714b7c4fbd8ec69e97efc981/main/src/main/scala/sbt/Defaults.scala#L520-L523 So extended a bit on it: ```scala import...

Confirming improvement by system property flag. - post weekend run - post reboot run (force cold FS cache) - post eclipse start run All have consistent improvement. It's not blazingly...

For the next person that hits this. It looks to be caused by https://github.com/sbt/sbt-git/blob/v1.0.2/src/main/scala/com/typesafe/sbt/SbtGit.scala#L266 Which looks to be fixed in the 2.0 version https://github.com/sbt/sbt-git/blob/main/src/main/scala/com/github/sbt/git/GitPlugin.scala#L303 You can get around it in...

Dang. I just now discovered that that omits dropping the v-prefix. So it looks 2.0 is a better way forward.

Ok, I found a similar but not the same problem that bubbles up in a multi tag context. https://github.com/sbt/sbt-git/blob/v2.0.0/src/main/scala/com/github/sbt/git/GitPlugin.scala#L275 If this needs to sort x.y.z-alpha-1, you also get a number...

Hi there, I can join the club. While updating an old project I got slammed by the `semanticdb-javac: ` error. It indeed looks like Javac plugin dies and it tries...

So this is what I got out of it. It seems to be triggered by an annotation on a local variable ```java private Function getConstructor(Class contract) { @SuppressWarnings("unchecked") Constructor constructor...

Why it fails on that exact instance is unclear, because I have other occurrences of annotations on local variables that don't make the plugin trip.

Reproducer: https://github.com/spangaer/semanticdb-nullpointer

Mhaha, ghosts from the past. Does sound more like a 1.1 thing though?