-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
26 lines (24 loc) · 1.06 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
import xerial.sbt.Sonatype.GitHubHosting
lazy val root = (project in file("."))
.settings(
organization := "io.github.wolfendale",
name := "scalacheck-gen-regexp",
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
homepage := Some(url("https://github.com/wolfendale/scalacheck-gen-regexp")),
sonatypeProjectHosting := Some(GitHubHosting("wolfendale", "scalacheck-gen-regexp", "michael.wolfendale@gmail.com")),
publishMavenStyle := true,
publishTo := sonatypePublishToBundle.value,
sonatypeCredentialHost := "s01.oss.sonatype.org",
version := "1.1.0",
crossScalaVersions := Seq("2.12.16", "2.13.8", "3.2.1"),
scalacOptions ++= Seq(
"-Xfatal-warnings"
),
libraryDependencies ++= Seq(
"org.scalacheck" %% "scalacheck" % "1.17.0" % "provided",
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.1.1",
"org.scalactic" %% "scalactic" % "3.2.13" % "test",
"org.scalatest" %% "scalatest" % "3.2.13" % "test",
"org.scalatestplus" %% "scalacheck-1-16" % "3.2.13.0" % "test"
)
)