-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
55 lines (46 loc) · 1.96 KB
/
build.sbt
File metadata and controls
55 lines (46 loc) · 1.96 KB
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
55
ThisBuild / version := "0.5.0"
ThisBuild / scalaVersion := "3.3.6"
ThisBuild / organization := "biz.lobachev.annette"
ThisBuild / organizationName := "Valery Lobachev"
ThisBuild / organizationHomepage := Some(url("https://lobachev.biz/"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/valerylobachev/data-dictionary-builder"),
"scm:git@github.com:valerylobachev/data-dictionary-builder.git",
),
)
ThisBuild / developers := List(
Developer(
id = "valerylobachev",
name = "Valery Lobachev",
email = "valery@lobachev.biz",
url = url("https://lobachev.biz/"),
),
)
ThisBuild / description := "Annette Data Dictionary builder"
ThisBuild / licenses := List("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / homepage := Some(url("https://github.com/valerylobachev/data-dictionary-builder"))
// Remove all additional repository other than Maven Central from POM
ThisBuild / pomIncludeRepository := { _ => false }
ThisBuild / publishMavenStyle := true
ThisBuild / publishTo := {
val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/"
if (isSnapshot.value) Some("central-snapshots" at centralSnapshots)
else localStaging.value
}
lazy val root = (project in file("."))
.settings(
name := "data-dictionary-builder",
)
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.19" % "test"
libraryDependencies += "com.google.guava" % "guava" % "33.4.8-jre"
libraryDependencies += "org.scalatra.scalate" %% "scalate-core" % "1.10.1"
libraryDependencies += "org.apache.poi" % "poi" % "5.4.1"
libraryDependencies += "org.apache.poi" % "poi-ooxml" % "5.4.1"
libraryDependencies += "org.atteo" % "evo-inflector" % "1.3"
val circeVersion = "0.14.14"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
)