-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
40 lines (28 loc) · 1.08 KB
/
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
36
37
38
39
40
name := "xgboost-java"
crossPaths := false
autoScalaLibrary := false
version := "2.0.2-1"
//javacOptions ++= Seq("-release", "8")
sonatypeProfileName := "io.github.metarank"
organization := "io.github.metarank"
publishMavenStyle := true
publishTo := sonatypePublishToBundle.value
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt"))
homepage := Some(url("https://github.com/metarank/xgboost-java"))
scmInfo := Some(
ScmInfo(
url("https://github.com/metarank/xgboost-java"),
"scm:[email protected]:metarank/xgboost-java.git"
)
)
developers := List(
Developer(id = "romangrebennikov", name = "Roman Grebennikov", email = "[email protected]", url = url("https://dfdx.me/"))
)
scalacOptions ++= Seq("-feature", "-deprecation")
libraryDependencies ++= Seq(
"junit" % "junit" % "4.13.2" % "test",
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
"org.slf4j" % "slf4j-api" % "2.0.5",
"org.apache.hadoop" % "hadoop-hdfs" % "2.10.1" % "provided",
"org.apache.hadoop" % "hadoop-common" % "2.10.1" % "provided"
)