-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (34 loc) · 1.3 KB
/
build.gradle
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
/**
* Module: [gatling-test]
*/
plugins {
id "com.github.lkishalmi.gatling" version "3.2.1"
}
apply plugin: 'scala'
repositories{
mavenLocal()
mavenCentral()
}
def gatlingVersion = '3.2.1'
dependencies{
ext.testVersions = [
commonslang3: '3.5',
commonsMath3: '3.6.1',
commonsCsv : '1.7',
scala : '2.12.7',
scalaModules: '0.8.0',
gatling : gatlingVersion,
]
compile group: 'org.scala-lang', name: 'scala-library', version: testVersions.scala
compile (group: 'io.gatling', name: 'gatling-parent', version: testVersions.gatling)
compile group: 'org.apache.commons', name: 'commons-lang3', version: testVersions.commonslang3
compile group: 'org.apache.commons', name: 'commons-math3', version: testVersions.commonsMath3
implementation group: 'org.apache.commons', name: 'commons-csv', version: testVersions.commonsCsv
gatling group: 'org.apache.commons', name: 'commons-math3', version: testVersions.commonsMath3
gatling group: 'org.apache.commons', name: 'commons-lang3', version: testVersions.commonslang3
gatling group: 'org.apache.commons', name: 'commons-csv', version: testVersions.commonsCsv
}
gatling {
toolVersion = gatlingVersion
jvmArgs = [ '-Xms1024M', '-Xmx1740M' ]
}