forked from daniel-shuy/scripted-scalatest-sbt-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (32 loc) · 754 Bytes
/
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
sbtPlugin := true
organization := "com.github.daniel-shuy"
name := "sbt-scripted-scalatest"
licenses := Seq(
"Apache License, Version 2.0" -> url(
"http://www.apache.org/licenses/LICENSE-2.0.txt"
)
)
homepage := Some(
url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin")
)
scmInfo := Some(
ScmInfo(
url("https://github.com/daniel-shuy/scripted-scalatest-sbt-plugin"),
"[email protected]:daniel-shuy/scripted-scalatest-sbt-plugin.git"
)
)
developers := List(
Developer(
"daniel-shuy",
"Daniel Shuy",
url("https://github.com/daniel-shuy")
)
)
crossSbtVersions := Seq(
"0.13.17",
"1.2.6"
)
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.1.0"
)