Monthly Archives: November 2015

SBT Good to know…

Dependecy problems I have been having some difficulties figuring out what depends on what. I found the following set plugins which I think can be really helpful; https://github.com/jrudolph/sbt-dependency-graph and https://github.com/gilt/sbt-dependency-graph-sugar Be sure to install GraphWiz first, I used Homebrew on … Continue reading

Posted in SBT, Scala | 1 Comment

Create an MBean (JMX) in Scala

Create the MBean like this

NOTE, that the interface/trait must end with MBean in the name And this is how you register your MBean

And the simply launch Java Mission Control (imc), attach to the JVM, and modify … Continue reading

Posted in Uncategorized | 2 Comments

SBT module not found, why ?

I have an build.sbt file that looks like this

But for some reason I can’t get slf4j downloaded from the Maven repository (http://mvnrepository.com) If I search the Maven Repository, I can clearly see that the version I intend to … Continue reading

Posted in Uncategorized | Leave a comment