-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
66 lines (58 loc) · 1.53 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
import Dependencies._
lazy val root = (project in file(".")).
aggregate(awsCore,awsS3,awsDynamo,awsSimpleDB,awsIAM,awsSqs).
settings(
name := "aws-scala",
organization := "com.github.hirokikonishi",
scalaVersion := "2.12.0",
sbtPlugin := true,
libraryDependencies ++= rootDeps
)
lazy val awsCore = (project in file("aws/core")).
settings(
name := "aws-core",
scalaVersion := "2.12.0",
libraryDependencies ++= awsCoreDeps
)
lazy val awsS3 = (project in file("aws/s3")).
dependsOn(awsCore).
settings(
name := "aws-s3",
scalaVersion := "2.12.0",
libraryDependencies ++= awsS3Deps
)
lazy val awsDynamo = (project in file("aws/dynamo")).
dependsOn(awsCore).
settings(
name := "aws-dynamo",
scalaVersion := "2.12.0",
libraryDependencies ++= awsDynamoDeps
)
lazy val awsSimpleDB = (project in file("aws/simpledb")).
dependsOn(awsCore).
settings(
name := "aws-simpledb",
scalaVersion := "2.12.0",
libraryDependencies ++= awsSimpleDBDeps
)
lazy val awsIAM = (project in file("aws/iam")).
dependsOn(awsCore).
settings(
name := "aws-iam",
scalaVersion := "2.12.0",
libraryDependencies ++= awsIAMDeps
)
lazy val awsSqs = (project in file("aws/sqs")).
dependsOn(awsCore).
settings(
name := "aws-sqs",
scalaVersion := "2.12.0",
libraryDependencies ++= awsSqsDeps
)
lazy val awsEmr = (project in file("aws/emr")).
dependsOn(awsCore).
settings(
name := "aws-emr",
scalaVersion := "2.12.0",
libraryDependencies ++= awsEmrDeps
)