forked from gatling/gatling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
161 lines (134 loc) · 5.32 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
import sbt._
import BuildSettings._
import Bundle._
import ConfigFiles._
import CopyLogback._
import Dependencies._
import VersionFile._
Global / githubPath := "gatling/gatling"
Global / gatlingDevelopers := Seq(
GatlingDeveloper("[email protected]", "Stephane Landelle", isGatlingCorp = true),
GatlingDeveloper("[email protected]", "Guillaume Corré", isGatlingCorp = true),
GatlingDeveloper("[email protected]", "Cédric Cousseran", isGatlingCorp = true),
GatlingDeveloper("[email protected] ", "Thomas Petillot", isGatlingCorp = true)
)
// [fl]
//
// [fl]
// Root project
Global / scalaVersion := "2.13.6"
lazy val root = Project("gatling-parent", file("."))
.enablePlugins(GatlingOssPlugin)
.dependsOn(Seq(commons, jsonpath, core, http, jms, mqtt, jdbc, redis).map(_ % "compile->compile;test->test"): _*)
.aggregate(
nettyUtil,
commonsShared,
commonsSharedUnstable,
commons,
jsonpath,
core,
jdbc,
redis,
httpClient,
http,
jms,
mqtt,
charts,
graphite,
app,
recorder,
testFramework,
bundle,
compiler
)
.settings(basicSettings)
.settings(skipPublishing)
.settings(libraryDependencies ++= docDependencies)
.settings(Test / unmanagedSourceDirectories := (sourceDirectory.value / "docs" ** "code").get)
.settings(scalafmtConfig := Def.task {
val file = scalafmtConfig.value
IO.append(
file,
"""
|project.excludeFilters = ["src/docs"]
|""".stripMargin
)
file
}.value)
// Modules
def gatlingModule(id: String) =
Project(id, file(id))
.enablePlugins(GatlingOssPlugin)
.settings(gatlingModuleSettings ++ CodeAnalysis.settings)
lazy val nettyUtil = gatlingModule("gatling-netty-util")
.settings(libraryDependencies ++= nettyUtilDependencies)
lazy val commonsShared = gatlingModule("gatling-commons-shared")
.dependsOn(nettyUtil % "compile->compile;test->test")
.settings(libraryDependencies ++= commonsSharedDependencies(scalaVersion.value))
lazy val commonsSharedUnstable = gatlingModule("gatling-commons-shared-unstable")
.dependsOn(commonsShared)
.settings(libraryDependencies ++= commonsSharedUnstableDependencies)
lazy val commons = gatlingModule("gatling-commons")
.dependsOn(commonsShared % "compile->compile;test->test")
.dependsOn(commonsSharedUnstable)
.settings(libraryDependencies ++= commonsDependencies)
.settings(generateVersionFileSettings)
lazy val jsonpath = gatlingModule("gatling-jsonpath")
.settings(libraryDependencies ++= jsonpathDependencies)
lazy val core = gatlingModule("gatling-core")
.dependsOn(commons % "compile->compile;test->test")
.dependsOn(jsonpath % "compile->compile;test->test")
.settings(libraryDependencies ++= coreDependencies)
.settings(copyGatlingDefaults(compiler))
lazy val jdbc = gatlingModule("gatling-jdbc")
.dependsOn(core % "compile->compile;test->test")
.settings(libraryDependencies ++= jdbcDependencies)
lazy val mqtt = gatlingModule("gatling-mqtt")
.dependsOn(nettyUtil, core)
.settings(libraryDependencies ++= mqttDependencies)
lazy val redis = gatlingModule("gatling-redis")
.dependsOn(core % "compile->compile;test->test")
.settings(libraryDependencies ++= redisDependencies)
lazy val httpClient = gatlingModule("gatling-http-client")
.dependsOn(nettyUtil % "compile->compile;test->test")
.settings(libraryDependencies ++= httpClientDependencies)
lazy val http = gatlingModule("gatling-http")
.dependsOn(core % "compile->compile;test->test", httpClient % "compile->compile;test->test")
.settings(libraryDependencies ++= httpDependencies)
lazy val jms = gatlingModule("gatling-jms")
.dependsOn(core % "compile->compile;test->test")
.settings(libraryDependencies ++= jmsDependencies)
.settings(Test / parallelExecution := false)
lazy val charts = gatlingModule("gatling-charts")
.dependsOn(core % "compile->compile;test->test")
.settings(libraryDependencies ++= chartsDependencies)
.settings(excludeDummyComponentLibrary)
.settings(chartTestsSettings)
lazy val graphite = gatlingModule("gatling-graphite")
.dependsOn(core % "compile->compile;test->test")
.settings(libraryDependencies ++= graphiteDependencies)
lazy val compiler = gatlingModule("gatling-compiler")
.settings(libraryDependencies ++= compilerDependencies(scalaVersion.value))
lazy val benchmarks = gatlingModule("gatling-benchmarks")
.dependsOn(core, http)
.enablePlugins(JmhPlugin)
.settings(libraryDependencies ++= benchmarkDependencies)
lazy val app = gatlingModule("gatling-app")
.dependsOn(core, http, jms, mqtt, jdbc, redis, graphite, charts)
lazy val recorder = gatlingModule("gatling-recorder")
.dependsOn(core % "compile->compile;test->test", http)
.settings(libraryDependencies ++= recorderDependencies)
lazy val testFramework = gatlingModule("gatling-test-framework")
.dependsOn(app)
.settings(libraryDependencies ++= testFrameworkDependencies)
lazy val bundle = gatlingModule("gatling-bundle")
.dependsOn(core, http)
.enablePlugins(UniversalPlugin)
.settings(generateConfigFiles(core))
.settings(generateConfigFiles(recorder))
.settings(copyLogbackXml(core))
.settings(bundleSettings)
.settings(packageDoc / publishArtifact := false) // no javadoc
.settings(packageSrc / publishArtifact := false) // no source
.settings(packageBin / publishArtifact := false) // no jar (remains the bundle.zip)
.settings(CodeAnalysis.disable)