-
Notifications
You must be signed in to change notification settings - Fork 14
/
build.sbt
31 lines (30 loc) · 1.03 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
import sbtcrossproject.CrossPlugin.autoImport.{CrossType, crossProject}
lazy val catsVersion = "2.12.0"
inThisBuild(
Seq(
organization := "com.ironcorelabs",
sonatypeProfileName := organization.value,
developers := List(
Developer("coltfred", "Colt Frederickson", "[email protected]", url("http://github.com/coltfred"))
),
homepage := Some(url("http://github.com/ironcorelabs/cats-scalatest")),
licenses := Seq("Apache-2.0" -> url("http://www.opensource.org/licenses/Apache-2.0")),
scalaVersion := "3.5.2",
crossScalaVersions := Seq(scalaVersion.value)
)
)
publish / skip := true
lazy val `cats-scalatest` = crossProject(JVMPlatform, JSPlatform)
.crossType(CrossType.Full)
.in(file("."))
.settings(
scalacOptions ++= Seq(
"-deprecation",
"-unchecked"
),
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % catsVersion,
"org.scalatest" %%% "scalatest" % "3.2.19",
"org.typelevel" %%% "shapeless3-typeable" % "3.4.3"
)
)