I'm sure that I can force it to update by deleting ~/.sbt and ~/.ivy2, but this is a major PITA. What do I need to do to kick sbt into updating?
I'm sure that I can force it to update by deleting ~/.sbt and ~/.ivy2, but this is a major PITA. What do I need to do to kick sbt into updating?
Have you tried deleting just~/.ivy2/cache/org.scala-lang.macro-paradise and ~/.sbt/boot/org.scala-lang.macro-paradise.scala-2.11.0-SNAPSHOT ?
Sbt's boot cache (~/.sbt/boot/<group>) is still used to pull scala in 0.12. *that* cache does not support snapshots, and is the one causing issues.
My recommendation is to use full-versioned nightlies or just clean out the macro-paradise boot directory and restart sbt when you need the newest version.
Note: I think mark cleaned up sbt 0.13 so scala no longer uses the boot cache, but the regular ivy cache.
--
You received this message because you are subscribed to the Google Groups "simple-build-tool" group.
To post to this group, send email to simple-b...@googlegroups.com.
To unsubscribe from this group, send email to simple-build-t...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/simple-build-tool?hl=en.
Sbt's boot cache (~/.sbt/boot/<group>) is still used to pull scala in 0.12. *that* cache does not support snapshots, and is the one causing issues.
My recommendation is to use full-versioned nightlies or just clean out the macro-paradise boot directory and restart sbt when you need the newest version.
Note: I think mark cleaned up sbt 0.13 so scala no longer uses the boot cache, but the regular ivy cache.
I'm not sure that this is the case - I'm using the most recent sbt 0.13.0 snapshot (0.13.0-20121202-052047).
Ah.... May still be in a branch then. In know it's planned, but it also may be buggy. When I'm at a computer I'll try to investigate for you.