-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
53 lines (40 loc) · 1.37 KB
/
Copy pathbuild.sbt
File metadata and controls
53 lines (40 loc) · 1.37 KB
1
import SonatypeKeys._releaseSettingssonatypeSettingsorganization := "org.msgpack"organizationName := "msgpack.org"scalaVersion := "2.10.3"description := "pickling-based object serialization/deserialization in msgpack format"version := "0.1-SNAPSHOT"pomExtra := { <url>https://github.com/msgpack/pickling-msgpack</url> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:github.com/msgpack/pickling-msgpack.git</connection> <developerConnection>scm:git:git@github.com:msgpack/pickling-msgpack.git</developerConnection> <url>github.com/msgpack/pickling-msgpack.git</url> </scm> <developers> <developer> <id>xerial</id> <name>Taro L. Saito</name> <url>http://xerial.org/leo</url> </developer> </developers>}resolvers += Resolver.sonatypeRepo("snapshots")libraryDependencies ++= Seq( "org.scalatest" % "scalatest_2.10" % "2.1.0-RC2" % "test", "org.scalacheck" %% "scalacheck" % "1.11.3" % "test", "org.scala-lang" %% "scala-pickling" % "0.8.0-SNAPSHOT", "org.xerial" % "xerial-lens" % "3.2.3")scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked", "-target:jvm-1.6", "-feature")logBuffered in Test := false// Since sbt-0.13.2incOptions := incOptions.value.withNameHashing(true)