-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathbuild.sbt
32 lines (21 loc) · 1.13 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
name := "gll-combinators"
organization := "com.codecommit"
baseVersion := "2.5"
strictSemVer := false
ThisBuild / publishFullName := "Daniel Spiewak"
ThisBuild / publishGithubUser := "djspiewak"
ThisBuild / crossScalaVersions := Seq("2.13.5", "2.12.13")
ThisBuild / scalaVersion := "2.13.5"
licenses := Seq("BSD-3-Clause" -> url("http://www.opensource.org/licenses/bsd-license.php"))
homepage := Some(url("https://github.com/djspiewak/gll-combinators"))
scmInfo := Some(ScmInfo(url("https://github.com/djspiewak/gll-combinators"),
"git@github.com:djspiewak/gll-combinators.git"))
Test / parallelExecution := false
val Specs2Version = "4.12.12"
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
"org.scalacheck" %% "scalacheck" % "1.15.4" % "test",
"org.specs2" %% "specs2-core" % Specs2Version % "test",
"org.specs2" %% "specs2-scalacheck" % Specs2Version % "test")
unmanagedSourceDirectories in Test += baseDirectory.value / "examples" / "src"
unmanagedResourceDirectories in Test += baseDirectory.value / "examples" / "input"