forked from bbstilson/sbt-codeartifact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
48 lines (42 loc) · 1.23 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
ThisBuild / organization := "com.iterable"
ThisBuild / organizationName := "Iterable"
ThisBuild / organizationHomepage := Some(url("https://iterable.com"))
ThisBuild / description := "A plugin for authenticating with AWS CodeArtifact"
ThisBuild / licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
ThisBuild / homepage := Some(url("https://github.com/Iterable/sbt-codeartifact"))
ThisBuild / developers := List(
Developer(
"douglasthomsen",
"Douglas Thomsen",
url("https://github.com/douglasthomsen")
)
)
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/Iterable/sbt-codeartifact"),
"scm:[email protected]:Iterable/sbt-codeartifact.git"
)
)
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
)