-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
54 lines (50 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
ThisBuild / crossScalaVersions := List("2.12.14", "2.13.6")
inThisBuild(
List(
organization := "io.github.flintersvn",
homepage := Some(url("https://github.com/FlintersVN")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
developers := List(
Developer(
"tung_nt",
"Nguyen Thanh Tung",
"tung_nt@septeni-technology.jp",
url("https://github.com/NgTung")
),
Developer(
"huy_ngq",
"Nguyen Quang Huy",
"qhquanghuy96@gmail.com",
url("https://github.com/qhquanghuy")
),
Developer(
"bang_nh",
"Nguyen Huu Bang",
"bangnh24@gmail.com",
url("https://github.com/bangnh1")
)
)
)
)
lazy val root = (project in file("."))
.settings(
name := "Snowflake4s",
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.3.1",
"com.google.inject" % "guice" % "4.1.0",
"net.codingwell" %% "scala-guice" % "4.2.9",
"com.github.tototoshi" % "scala-base62_2.10" % "0.1.0",
"org.scalatest" %% "scalatest" % "3.2.10" % Test
)
)
.settings(
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
sonatypeProfileName := "io.github.flintersvn"
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.
Global / scalacOptions ++= Seq(
"-Xlint:unused"
)