import scalariform.formatter.preferences._ lazy val commonSettings = scalariformSettings ++ Seq( organization := "com.softwaremill.sttp", version := "0.1", scalaVersion := "2.12.2", crossScalaVersions := Seq(scalaVersion.value, "2.11.8"), scalacOptions ++= Seq("-unchecked", "-deprecation"), ScalariformKeys.preferences := ScalariformKeys.preferences.value .setPreference(DoubleIndentClassDeclaration, true) .setPreference(PreserveSpaceBeforeArguments, true) .setPreference(CompactControlReadability, true) .setPreference(SpacesAroundMultiImports, false), // Sonatype OSS deployment publishTo := { val nexus = "https://oss.sonatype.org/" val (name, url) = if (isSnapshot.value) ("snapshots", nexus + "content/repositories/snapshots") else ("releases", nexus + "service/local/staging/deploy/maven2") Some(name at url) }, credentials += Credentials(Path.userHome / ".ivy2" / ".credentials"), publishMavenStyle := true, pomIncludeRepository := { _ => false }, pomExtra := ( git@github.com/softwaremill/sttp.git scm:git:git@github.com/softwaremill/sttp.git adamw Adam Warski http://www.warski.org ), licenses := ("Apache2", new java.net.URL("http://www.apache.org/licenses/LICENSE-2.0.txt")) :: Nil, homepage := Some(new java.net.URL("http://softwaremill.com/open-source")) ) val akkaHttpVersion = "10.0.9" val akkaHttp = "com.typesafe.akka" %% "akka-http" % akkaHttpVersion val scalaTest = "org.scalatest" %% "scalatest" % "3.0.3" % "test" lazy val rootProject = (project in file(".")) .settings(commonSettings: _*) .settings( publishArtifact := false, name := "sttp") .aggregate(core, akkaHttpHandler, tests) lazy val core: Project = (project in file("core")) .settings(commonSettings: _*) .settings( name := "core", libraryDependencies ++= Seq( "org.scalacheck" %% "scalacheck" % "1.13.5" % "test", scalaTest ) ) lazy val akkaHttpHandler: Project = (project in file("akka-http-handler")) .settings(commonSettings: _*) .settings( name := "akka-http-handler", libraryDependencies ++= Seq( akkaHttp ) ) dependsOn(core) lazy val tests: Project = (project in file("tests")) .settings(commonSettings: _*) .settings( name := "tests", libraryDependencies ++= Seq( akkaHttp, scalaTest ) ) dependsOn(core, akkaHttpHandler)