-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
65 lines (56 loc) · 2.01 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
inThisBuild(List(
// Project metadata
organization := "com.github.eldis",
organizationHomepage := url("http://eldis.ru").some,
homepage := url("https://github.com/eldis/java-tool-launcher").some,
licenses := Vector("MIT" -> url("http://opensource.org/licenses/MIT")),
scmInfo := ScmInfo(
url("https://github.com/eldis/java-tool-launcher"),
"scm:[email protected]:eldis/java-tool-launcher.git"
).some,
startYear := 2019.some,
developers += Developer(
id = "nigredo-tori",
name = "Dmitry Polienko",
email = "[email protected]",
url = url("https://github.com/nigredo-tori")
),
// Common Scala setup and tooling
scalaVersion := "2.13.1",
scalafmtOnCompile := true,
// Publishing settings
credentials += Credentials(Path.userHome / ".sbt" / "sonatype_credential"),
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
},
publishMavenStyle := true
))
// Set up the root project
name := "root"
publish / skip := true
val core = project.settings(
name := "tool-launcher",
description := "Java application/ToolProvider launcher with @argfile support",
// We want the resulting JAR to be self-contained, and not interacting with
// any other dependencies - so write it in raw Java.
autoScalaLibrary := false,
crossPaths := false,
javacOptions ++= List(
// No `-release`, and no `-library`. We want to support Java 9+ features where available.
"-source", "8", "-target", "8",
"-Xlint:all"
),
doc / javacOptions := List("--release", "11"),
)
// Tests need to be in a separate subproject, since we want to be able to use Scala.
val tests = project.settings(
publish / skip := true,
javacOptions += "-Xlint:all",
libraryDependencies += "org.specs2" %% "specs2-core" % "4.6.0" % Test,
// We need to fork to make sure `java.class.path` is properly set.
Test / fork := true
).dependsOn(core)