forked from bbstilson/sbt-codeartifact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
41 lines (37 loc) · 931 Bytes
/
Copy pathbuild.sbt
File metadata and controls
41 lines (37 loc) · 931 Bytes
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
inThisBuild(
List(
organization := "io.github.bbstilson",
homepage := Some(url("https://github.com/bbstilson/sbt-codeartifact")),
licenses := Seq("MIT" -> url("https://choosealicense.com/licenses/mit/")),
developers := List(
Developer(
"bbstilson",
"Brandon Stilson",
"bbstilson@fastmail.com",
url("https://github.com/bbstilson")
)
)
)
)
lazy val testSettings: Seq[Setting[_]] = Seq(
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++ Seq(
"-Xmx1024M",
"-Dplugin.version=" + version.value
)
},
scriptedBufferLog := false
)
lazy val core = project
.in(file("core"))
.settings(testSettings)
lazy val `sbt-codeartifact` = project
.in(file("sbt-codeartifact"))
.dependsOn(core)
.settings(testSettings)
lazy val root = project
.in(file("."))
.aggregate(core, `sbt-codeartifact`)
.settings(
publish / skip := true
)