-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
65 lines (49 loc) · 1.94 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name := "sangria-fs2"
organization := "org.sangria-graphql"
version := "0.1.0-SNAPSHOT"
description := "Sangria fs2 integration"
homepage := Some(url("http://sangria-graphql.org"))
licenses := Seq("Apache License, ASL Version 2.0" → url("http://www.apache.org/licenses/LICENSE-2.0"))
scalaVersion := "2.12.0"
crossScalaVersions := Seq("2.11.8", "2.12.0")
scalaOrganization in ThisBuild := "org.typelevel"
scalacOptions ++= Seq("-deprecation", "-feature", "-Ypartial-unification")
scalacOptions ++= {
if (scalaVersion.value startsWith "2.12")
Seq.empty
else
Seq("-target:jvm-1.7")
}
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")
libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria-streaming-api" % "0.1.1",
"co.fs2" %% "fs2-core" % "0.9.2",
"org.scalatest" %% "scalatest" % "3.0.0" % "test"
)
git.remoteRepo := "[email protected]:sangria-graphql/sangria-git"
// Publishing
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := (_ ⇒ false)
publishTo := Some(
if (version.value.trim.endsWith("SNAPSHOT"))
"snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
else
"releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
// Site and docs
site.settings
site.includeScaladoc()
ghpages.settings
// nice *magenta* prompt!
shellPrompt in ThisBuild := { state ⇒
scala.Console.MAGENTA + Project.extract(state).currentRef.project + "> " + scala.Console.RESET
}
// Additional meta-info
startYear := Some(2016)
organizationHomepage := Some(url("https://github.com/sangria-graphql"))
developers := Developer("OlegIlyenko", "Oleg Ilyenko", "", url("https://github.com/OlegIlyenko")) :: Nil
scmInfo := Some(ScmInfo(
browseUrl = url("https://github.com/sangria-graphql/sangria-git"),
connection = "scm:git:[email protected]:sangria-graphql/sangria-git"
))