-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.sbt
More file actions
31 lines (19 loc) · 842 Bytes
/
build.sbt
File metadata and controls
31 lines (19 loc) · 842 Bytes
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
name := "crypto"
organization := "com.evolutiongaming"
homepage := Some(url("https://github.com/evolution-gaming/crypto"))
startYear := Some(2016)
organizationName := "Evolution"
organizationHomepage := Some(url("https://evolution.com"))
publishTo := Some(Resolver.evolutionReleases)
scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.14", "2.12.19", "3.3.3")
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3",
"commons-codec" % "commons-codec" % "1.15" ,
"org.scalatest" %% "scalatest" % "3.2.18" % Test
)
licenses := Seq(("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
releaseCrossBuild := true
//addCommandAlias("check", "all versionPolicyCheck Compile/doc")
addCommandAlias("check", "show version")
addCommandAlias("build", "+all compile test")