-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (27 loc) · 887 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 BuildSettings.commonSettings
import org.beangle.parent.Dependencies._
ThisBuild / organization := "org.beangle.tools"
ThisBuild / version := "0.0.21"
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/beangle/tools"),
"scm:git@github.com:beangle/tools.git"
)
)
ThisBuild / developers := List(
Developer(
id = "chaostone",
name = "Tihua Duan",
email = "duantihua@gmail.com",
url = url("http://github.com/duantihua")
)
)
ThisBuild / description := "The Beangle Sbt Tools"
ThisBuild / homepage := Some(url("https://beangle.github.io/tools/index.html"))
lazy val root = (project in file("."))
.enablePlugins(SbtPlugin)
.settings(
commonSettings,
name := "sbt-beangle-tools",
libraryDependencies ++= Seq(logback_classic, logback_core,postgresql,h2,jtds,ojdbc11,orai18n,mysql_connector_java,mssql_jdbc,HikariCP)
)