This repository has been archived by the owner on Oct 26, 2020. It is now read-only.
forked from sangria-graphql/sangria-ion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
63 lines (48 loc) · 1.98 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
name := "sangria-ion"
organization := "org.sangria-graphql"
mimaPreviousArtifacts := Set("org.sangria-graphql" %% "sangria-ion" % "1.0.0")
description := "Sangria Amazon Ion marshalling"
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.13.0"
crossScalaVersions := Seq("2.11.12", "2.12.10", scalaVersion.value)
scalacOptions ++= Seq("-deprecation", "-feature")
scalacOptions ++= {
if (scalaVersion.value startsWith "2.11")
Seq("-target:jvm-1.7")
else
Seq.empty
}
libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria-marshalling-api" % "1.0.4",
"software.amazon.ion" % "ion-java" % "1.5.1",
"org.sangria-graphql" %% "sangria-marshalling-testkit" % "1.0.3" % Test,
"org.scalatest" %% "scalatest" % "3.1.1" % Test
)
git.remoteRepo := "git@github.com:sangria-graphql/sangria-ion.git"
// Publishing
releaseCrossBuild := true
releasePublishArtifactsAction := PgpKeys.publishSigned.value
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")
// Site and docs
enablePlugins(GhpagesPlugin)
enablePlugins(SiteScaladocPlugin)
// 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-org/sangria-ion.git"),
connection = "scm:git:git@github.com:sangria-graphql-org/sangria-ion.git"
))