-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
37 lines (33 loc) · 1.06 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
import Dependencies._
lazy val generate = taskKey[Unit]("Crawl an AWS CloudFormation reference page and generate corresponding resource class")
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.mshibuya",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT"
)),
name := "cloudformal",
libraryDependencies ++= Seq(argonaut, scopt, awsCloudFormation, reflections, scalaReflect, scalaTest % Test)
)
lazy val generator = (project in file("generator")).
settings(
inThisBuild(List(
organization := "com.github.mshibuya",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT"
)),
name := "cloudformal-generator",
libraryDependencies ++= Seq(argonaut)
)
lazy val example = (project in file("example")).
settings(
inThisBuild(List(
organization := "com.github.mshibuya",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT"
)),
name := "cloudformal-example",
libraryDependencies ++= Seq(awsEc2)
)
.dependsOn(root)