-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
33 lines (27 loc) · 1.04 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
import Dependencies._
name := "resource-pool"
organization := "com.evolution"
organizationName := "Evolution"
organizationHomepage := Some(url("https://evolution.com"))
homepage := Some(url("https://github.com/evolution-gaming/resource-pool"))
startYear := Some(2023)
crossScalaVersions := Seq("2.13.15", "3.3.4")
scalaVersion := crossScalaVersions.value.head
scalacOptions := Seq(
"-release:17",
"-Xsource:3",
"-deprecation"
)
autoAPIMappings := true
versionScheme := Some("early-semver")
publishTo := Some(Resolver.evolutionReleases) // sbt-artifactory-plugin
versionPolicyIntention := Compatibility.BinaryCompatible // sbt-version-policy
libraryDependencies ++= Seq(
`cats-effect`,
scalatest
)
licenses := Seq(("MIT", url("https://opensource.org/licenses/MIT")))
//addCommandAlias("fmt", "scalafixAll; all scalafmtAll scalafmtSbt")
//addCommandAlias("check", "scalafixEnable; scalafixAll --check; all versionPolicyCheck scalafmtCheckAll scalafmtSbtCheck")
addCommandAlias("check", "versionPolicyCheck")
addCommandAlias("build", "all compile test")