-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (28 loc) · 938 Bytes
/
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
import org.beangle.parent.Dependencies.*
import org.beangle.parent.Settings.*
ThisBuild / organization := "org.beangle.boot"
ThisBuild / version := "0.1.15"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/beangle/boot"),
"scm:[email protected]:beangle/boot.git"
)
)
ThisBuild / developers := List(
Developer(
id = "chaostone",
name = "Tihua Duan",
email = "[email protected]",
url = url("http://github.com/duantihua")
)
)
ThisBuild / description := "Beangle Boot ToolKit"
ThisBuild / homepage := Some(url("https://beangle.github.io/boot/index.html"))
val beangle_commons = "org.beangle.commons" % "beangle-commons" % "5.6.25"
lazy val root = (project in file("."))
.settings(
name := "beangle-boot",
common,
libraryDependencies ++= Seq(beangle_commons, apache_commons_compress),
libraryDependencies ++= Seq(logback_classic % "test", logback_core % "test", scalatest)
)