-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sc
26 lines (21 loc) · 931 Bytes
/
build.sc
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
import mill._, scalalib._, publish._
object cryptobits extends mill.Cross[CryptobitsModule]("2.13.6", "2.12.8", "2.11.12", "2.10.7")
class CryptobitsModule(val crossScalaVersion: String) extends CrossScalaModule with PublishModule {
def artifactName = "cryptobits"
def publishVersion = "1.3.1"
def ivyDeps = Agg(ivy"commons-codec:commons-codec:1.12")
object test extends Tests {
def ivyDeps = Agg(ivy"org.scalacheck::scalacheck:1.14.0")
def testFrameworks = Seq("org.scalacheck.ScalaCheckFramework")
}
def pomSettings = PomSettings(
organization = "org.reactormonk",
description = "Simple crypto for signing auth tokens",
url = "https://github.com/reactormonk/cryptobits",
licenses = Seq(License.MIT),
versionControl = VersionControl.github("reactormonk", "cryptobits"),
developers = Seq(
Developer("reactormonk", "Simon Hafner", "https://github.com/reactormonk")
)
)
}