-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.sbt
34 lines (31 loc) · 1.33 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
lazy val root = Project("root", file("."))
.settings(settings, publishArtifact := false)
.aggregate(automapperMacros, automapper)
lazy val automapperMacros = Project("automapper-macros", file("automapper-macros"))
.settings(settings, libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value
))
lazy val automapper = Project("automapper", file("automapper"))
.settings(settings, libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.8" % "test"
))
.dependsOn(automapperMacros)
lazy val settings = Seq(
scalaVersion := "2.13.0",
crossScalaVersions := Seq("2.13.0"),
organization := "io.bfil",
organizationName := "Bruno Filippone",
organizationHomepage := Some(url("http://bfil.io")),
homepage := Some(url("https://github.com/bfil/scala-automapper")),
licenses := Seq(("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))),
developers := List(
Developer("bfil", "Bruno Filippone", "[email protected]", url("http://bfil.io"))
),
startYear := Some(2015),
publishTo := Some("Bintray" at s"https://api.bintray.com/maven/bfil/maven/${name.value}"),
credentials += Credentials(Path.userHome / ".ivy2" / ".bintray-credentials"),
scmInfo := Some(ScmInfo(
url(s"https://github.com/bfil/scala-automapper"),
s"[email protected]:bfil/scala-automapper.git"
))
)