forked from harrah/sbinary
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
96 lines (90 loc) · 3.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import Dependencies._
ThisBuild / organization := "org.scala-sbt"
ThisBuild / organizationHomepage := Some(url("http://scala-sbt.org/"))
ThisBuild / homepage := Some(url("https://github.com/sbt/sbinary"))
ThisBuild / version := "0.5.2-SNAPSHOT"
ThisBuild / scalaVersion := scala212
ThisBuild / crossScalaVersions := Seq(scala210, scala211, scala212, scala213, scala3)
ThisBuild / developers := List(
Developer(
"drmaciver",
"David R. MacIver",
"@drmaciver",
url("https://github.com/DRMacIver")
),
Developer("harrah", "Mark Harrah", "@harrah", url("https://github.com/harrah")),
Developer("eed3si9n", "Eugene Yokota", "@eed3si9n", url("https://github.com/eed3si9n"))
)
ThisBuild / description := "Library for describing binary formats for Scala types"
ThisBuild / licenses := Seq("MIT" -> new URL("https://github.com/sbt/sbinary/blob/master/LICENSE"))
ThisBuild / scmInfo := Some(
ScmInfo(url("https://github.com/sbt/sbinary"), "[email protected]:sbt/sbinary.git")
)
ThisBuild / pomIncludeRepository := (_ => false) // drop repos other than Maven Central from POM
ThisBuild / publishTo := {
val nexus = "https://oss.sonatype.org/"
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
lazy val root = (project in file("."))
.aggregate(core, treeExample)
.settings(nocomma {
name := "SBinary Root"
publish / skip := true
mimaPreviousArtifacts := Set.empty
})
lazy val core = (project in file("core"))
.settings(nocomma {
name := "SBinary"
mimaPreviousArtifacts := {
Set.empty
}
libraryDependencies += scalacheck.value % Test
libraryDependencies ++= scalaVersion(scalaXmlDep).value
Compile / unmanagedSourceDirectories += {
val base = (Compile / scalaSource).value.getParentFile
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 13)) | Some((3, _)) =>
base / s"scala-2.13+"
case _ =>
base / s"scala-2.13-"
}
}
Compile / unmanagedResources += (baseDirectory map { _ / "LICENSE" }).value
mimaPreviousArtifacts := {
val versions = Seq("0.5.0")
val crossVersion = if (crossPaths.value) CrossVersion.binary else CrossVersion.disabled
versions.map(v => organization.value % moduleName.value % v cross crossVersion).toSet
},
})
.settings(
relaxOldScala,
Fmpp.templateSettings
)
lazy val treeExample = (project in (file("examples") / "bt"))
.dependsOn(core)
.settings(nocomma {
name := "SBinary Tree Example"
publish / skip := true
mimaPreviousArtifacts := Set.empty
})
.settings(relaxOldScala)
def relaxOldScala: Seq[Setting[_]] = Seq(
scalacOptions := {
val old = scalacOptions.value
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, n)) if n >= 12 =>
old filterNot Set(
"-Xfatal-warnings",
"-Ywarn-unused-import",
"-Yno-adapted-args"
)
case _ =>
old filterNot (Set(
"-Xfatal-warnings",
"-deprecation",
"-Ywarn-unused",
"-Ywarn-unused-import"
).apply _)
}
}
)