Skip to content

Instantly share code, notes, and snippets.

@supr
Created November 15, 2013 22:07
Show Gist options
  • Select an option

  • Save supr/7492465 to your computer and use it in GitHub Desktop.

Select an option

Save supr/7492465 to your computer and use it in GitHub Desktop.
Loki SBT
name := "Loki"
version := "0.0.1-SNAPSHOT"
scalaVersion := "2.10.0"
resolvers ++= Seq(
"Oracle Released Java Packages" at "http://download.oracle.com/maven",
"Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
libraryDependencies ++= Seq(
"org.jboss.netty" % "netty" % "3.2.8.Final",
"org.mapdb" % "mapdb" % "0.9.8-SNAPSHOT",
"com.typesafe.akka" %% "akka-actor" % "2.1.4",
"com.typesafe.akka" %% "akka-remote" % "2.1.4",
"com.ibm.icu" % "icu4j" % "50.1.1",
"net.liftweb" %% "lift-json" % "2.5-M4",
"commons-collections" % "commons-collections" % "3.2.1",
"junit" % "junit" % "4.8.1" % "test",
"org.glassfish.grizzly" % "grizzly-http-server" % "2.3.7",
"org.apache.zookeeper" % "zookeeper" % "3.4.5" excludeAll(
ExclusionRule(organization = "com.sun.jdmk"),
ExclusionRule(organization = "com.sun.jmx"),
ExclusionRule(organization = "javax.jms")
),
"com.google.guava" % "guava" % "15.0",
"javax.annotation" % "jsr250-api" % "1.0",
"com.google.code.findbugs" % "jsr305" % "2.0.2",
"com.sleepycat" % "je" % "3.3.75"
)
javacOptions ++= Seq("-source", "1.7", "-target", "1.7")
@csm
Copy link
Copy Markdown

csm commented Nov 16, 2013

Does this compile the Java sources too?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment