From 034c40595f217ef1f11ca351666a03aa08976b81 Mon Sep 17 00:00:00 2001 From: adamw Date: Thu, 29 Jun 2017 17:24:46 +0200 Subject: Initital draft --- build.sbt | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 build.sbt (limited to 'build.sbt') diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..9126330 --- /dev/null +++ b/build.sbt @@ -0,0 +1,80 @@ +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) \ No newline at end of file -- cgit v1.2.3