You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.
This is standard problem with transitive dependency to log4j which takse those unresorvable dependencies. Just exclude those problematic dependencies from your build.
Hi there,
I am trying to include the library in a simple project and am getting these resolve dependencies exceptions:
sbt.ResolveException: download failed: javax.jms#jms;1.1!jms.jar
download failed: com.sun.jdmk#jmxtools;1.2.1!jmxtools.jar
download failed: com.sun.jmx#jmxri;1.2.1!jmxri.jar
Following is my build.sbt file:
name := "scala-cassandra-spike"
organization := "ardlema"
version := "0.0.1"
scalaVersion := "2.10.3"
val twitterRepo = "Twitter's Repository" at "http://maven.twttr.com/"
val cassie = "com.twitter" % "cassie" % "0.19.0"
resolvers ++= Seq(twitterRepo)
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.10.0" % "test" withSources() withJavadoc(),
cassie
)
initialCommands := "import ardlema.scalacassandraspike._"
Thank you in advance
The text was updated successfully, but these errors were encountered: