-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
35 lines (24 loc) · 951 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
33
34
35
name := "sclera-plugin-webdisplay"
description := "Plot Sclera query results in a web-browser"
homepage := Some(url(s"https://github.com/scleradb/${name.value}"))
scmInfo := Some(
ScmInfo(
url(s"https://github.com/scleradb/${name.value}"),
s"scm:[email protected]:scleradb/${name.value}.git"
)
)
version := "4.0"
startYear := Some(2012)
scalaVersion := "2.13.1"
licenses := Seq("Apache License version 2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.txt"))
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3" % "provided",
"io.javalin" % "javalin" % "3.7.0",
"com.scleradb" %% "sclera-display" % "4.0" % "provided",
"com.scleradb" %% "sclera-core" % "4.0" % "provided"
)
scalacOptions ++= Seq(
"-Werror", "-feature", "-deprecation", "-unchecked"
)
exportJars := true