-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (29 loc) · 1.12 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
ThisBuild / scalaVersion := "2.13.5"
ThisBuild / versionScheme := Some("early-semver")
lazy val root = (project in file(".")).settings(
name := "bcrypt4s",
startYear := Some(2022),
organization := "io.github.dagdelenmustafa",
organizationName := "dagdelenmustafa",
homepage := Some(url("https://github.com/dagdelenmustafa/bcrypt4s")),
scmInfo := Some(
ScmInfo(url("https://github.com/dagdelenmustafa/bcrypt4s"), "[email protected]:dagdelenmustafa/bcrypt4s.git")
),
developers := List(
Developer("dagdelenmustafa",
"Mustafa Dağdelen",
url("https://github.com/dagdelenmustafa")
)
),
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0")),
crossPaths := false,
pomIncludeRepository := { _ => false },
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.3.12",
"org.mindrot" % "jbcrypt" % "0.4",
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test
)
)