|
@@ -1,14 +1,13 @@
|
|
import sbt._
|
|
import sbt._
|
|
import Keys._
|
|
import Keys._
|
|
-import spray.revolver.RevolverPlugin.Revolver
|
|
|
|
-import sbtassembly.Plugin._
|
|
|
|
-import AssemblyKeys._
|
|
|
|
|
|
+import spray.revolver.RevolverPlugin
|
|
|
|
+import sbtassembly.AssemblyPlugin._
|
|
|
|
|
|
name := "plain-benchmark"
|
|
name := "plain-benchmark"
|
|
|
|
|
|
organization := "com.ibm"
|
|
organization := "com.ibm"
|
|
|
|
|
|
-scalaVersion := "2.10.3"
|
|
|
|
|
|
+scalaVersion := "2.11.7"
|
|
|
|
|
|
version := "1.0.1"
|
|
version := "1.0.1"
|
|
|
|
|
|
@@ -19,7 +18,7 @@ mainClass in Compile := Some("com.ibm.plain.bootstrap.Main")
|
|
scalacOptions in Compile ++= Seq(
|
|
scalacOptions in Compile ++= Seq(
|
|
"-g:vars",
|
|
"-g:vars",
|
|
"-encoding", "UTF-8",
|
|
"-encoding", "UTF-8",
|
|
- "-target:jvm-1.7",
|
|
|
|
|
|
+ "-target:jvm-1.8",
|
|
"-deprecation",
|
|
"-deprecation",
|
|
"-feature",
|
|
"-feature",
|
|
"-optimise"
|
|
"-optimise"
|
|
@@ -31,8 +30,8 @@ libraryDependencies ++= Seq(
|
|
"com.typesafe" % "config" % "1.0.2",
|
|
"com.typesafe" % "config" % "1.0.2",
|
|
"ch.qos.logback" % "logback-classic" % "1.0.13",
|
|
"ch.qos.logback" % "logback-classic" % "1.0.13",
|
|
"org.codehaus.janino" % "janino" % "2.6.1",
|
|
"org.codehaus.janino" % "janino" % "2.6.1",
|
|
- "com.typesafe.akka" %% "akka-actor" % "2.2.3",
|
|
|
|
- "com.typesafe.akka" %% "akka-slf4j" % "2.2.3",
|
|
|
|
|
|
+ "com.typesafe.akka" %% "akka-actor" % "2.4.1",
|
|
|
|
+ "com.typesafe.akka" %% "akka-slf4j" % "2.4.1",
|
|
"org.apache.commons" % "commons-lang3" % "3.1",
|
|
"org.apache.commons" % "commons-lang3" % "3.1",
|
|
"org.apache.commons" % "commons-compress" % "1.5",
|
|
"org.apache.commons" % "commons-compress" % "1.5",
|
|
"commons-io" % "commons-io" % "2.4",
|
|
"commons-io" % "commons-io" % "2.4",
|
|
@@ -45,10 +44,11 @@ libraryDependencies ++= Seq(
|
|
"net.lingala.zip4j" % "zip4j" % "1.3.1",
|
|
"net.lingala.zip4j" % "zip4j" % "1.3.1",
|
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.3.0",
|
|
"com.fasterxml.jackson.core" % "jackson-databind" % "2.3.0",
|
|
"com.sun.jersey" % "jersey-json" % "1.17.1",
|
|
"com.sun.jersey" % "jersey-json" % "1.17.1",
|
|
- "mysql" % "mysql-connector-java" % "5.1.27"
|
|
|
|
|
|
+ "mysql" % "mysql-connector-java" % "5.1.27",
|
|
|
|
+ "org.scala-lang" % "scala-xml" % "2.11.0-M4"
|
|
)
|
|
)
|
|
|
|
|
|
-Revolver.settings
|
|
|
|
|
|
+RevolverPlugin.settings
|
|
|
|
|
|
scalariformSettings
|
|
scalariformSettings
|
|
|
|
|