scalala / Scalala

Scalala has been superseded by dlwh/breeze. Scalala is a high performance numeric linear algebra library for Scala, with rich Matlab-like operators on vectors and matrices; a library of numerical routines; support for plotting.
http://groups.google.com/group/scalala
GNU Lesser General Public License v2.1
298 stars 30 forks source link

ProguardPlugin not found #42

Closed afwlehmann closed 12 years ago

afwlehmann commented 12 years ago

Hi,

after pulling the latest commits from Scalala's master branch, sbt would refuse to work even after deleting all target directories and the ivy cache:

[info] Resolving org.scala-tools.sbt#precompiled-2_8_1;0.11.2 ...
[info] Resolving org.scala-tools.sbt#precompiled-2_8_0;0.11.2 ...
[info] Resolving org.scala-tools.sbt#precompiled-2_9_0;0.11.2 ...
[info] Done updating.
/Users/alex/src/git/Scalala/build.sbt:72: error: not found: value ProguardPlugin
seq(ProguardPlugin.proguardSettings :_*)
    ^
[error] Type error in expression
Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore? r

It turns out that the library dependency for the xsbt proguard plugin needs to be placed into project/plugins/build.sbt in accordance with what the author says on his page.

dramage commented 12 years ago

Actually, sbt does put up a warning about this, which hints at the answer - all you need to do rm -r project/plugins/.

afwlehmann commented 12 years ago

Uh, thanks, I failed to notice that. It's working fine now!