-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
32 lines (21 loc) · 806 Bytes
/
build.sbt
File metadata and controls
32 lines (21 loc) · 806 Bytes
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
name := "sclera-install-pathgen"
description := "Installation helper package -- while installing an artifact, gets the classpath containing the artifact and its dependencies"
homepage := Some(url(s"https://github.com/scleradb/${name.value}"))
scmInfo := Some(
ScmInfo(
url(s"https://github.com/scleradb/${name.value}"),
s"scm:git@github.com: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 += sbtResolver.value
libraryDependencies ++= Seq(
"org.scala-sbt" % "launcher-interface" % "1.1.3" % "provided"
)
scalacOptions ++= Seq(
"-Werror", "-feature", "-deprecation", "-unchecked"
)
exportJars := true