forked from scalacenter/nailgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
29 lines (25 loc) · 861 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
inThisBuild(List(
organization := "io.github.alexarchambault.bleep",
homepage := Some(url(s"https://github.com/alexarchambault/nailgun")),
licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer("alexarchambault", "Alex Archambault", "", url(s"https://github.com/alexarchambault"))
),
sonatypeCredentialHost := "s01.oss.sonatype.org"
))
lazy val sonatypeSetting = Def.settings(
sonatypeProfileName := "io.github.alexarchambault"
)
lazy val `nailgun-server` = project
.settings(
crossPaths := false,
autoScalaLibrary := false,
libraryDependencies ++= Seq(
"net.java.dev.jna" % "jna" % "4.4.0",
"net.java.dev.jna" % "jna-platform" % "4.4.0",
"org.slf4j" % "slf4j-api" % "1.7.26"
),
sonatypeSetting
)
skip.in(publish) := true
sonatypeSetting