-
Notifications
You must be signed in to change notification settings - Fork 18
/
build.sbt
43 lines (35 loc) · 1.14 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
val Scala11x = "2.11.12"
val Scala12x = "2.12.10"
name := "cucumber-runner"
organization := "com.waioeka.sbt"
scalaVersion := Scala12x
crossScalaVersions := Seq(Scala11x, Scala12x)
version := "0.2.2"
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)
libraryDependencies ++= Seq(
"io.cucumber" % "cucumber-core" % "4.3.0",
"io.cucumber" %% "cucumber-scala" % "4.3.0",
"io.cucumber" % "cucumber-jvm" % "4.3.0",
"io.cucumber" % "cucumber-junit" % "4.3.0",
"org.scala-sbt" % "test-interface" % "1.0")
pomIncludeRepository := Function.const(false)
publishArtifact in Test := false
sonatypeProfileName := "com.waioeka.sbt"
publishMavenStyle := true
// License of your choice
licenses := Seq("BSD-style" -> url("http://www.opensource.org/licenses/bsd-license.php"))
homepage := Some(url("https://github.com/lewismj/cucumber"))
scmInfo := Some(
ScmInfo(
url("https://github.com/lewismj/cucmber"),
"scm:git@github.com:lewismj/cucumber.git"
)
)
developers := List(
Developer(id="lewismj", name="Michael Lewis", email="lewismj@mac.com", url=url("https://www.waioeka.com"))
)