-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
34 lines (23 loc) · 922 Bytes
/
build.sbt
File metadata and controls
34 lines (23 loc) · 922 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
33
34
name := "sclera-plugin-weka"
description := "Add-on that enables Sclera to perform machine learning using the WEKA library from within SQL"
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("GNU GPLv3" -> url("http://www.gnu.org/licenses/gpl-3.0.html"))
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
libraryDependencies ++= Seq(
"nz.ac.waikato.cms.weka" % "weka-stable" % "3.8.4",
"com.scleradb" %% "sclera-config" % "4.0" % "provided",
"com.scleradb" %% "sclera-core" % "4.0" % "provided"
)
scalacOptions ++= Seq(
"-Werror", "-feature", "-deprecation", "-unchecked"
)
exportJars := true