-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
41 lines (35 loc) · 1.06 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
plugins {
id 'java'
id("com.epam.drill.integration.cicd") version "0.1.6"
}
group 'com.epam'
version '1.0-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'com.epam.drill.integration.cicd'
dependencies {
implementation 'io.rest-assured:rest-assured:4.3.3'
implementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
runtimeOnly 'org.junit.jupiter:junit-jupiter-engine'
implementation 'com.codeborne:selenide:5.19.0'
implementation 'org.slf4j:slf4j-simple:1.7.32'
}
drill {
groupId = "realworld"
appId = "backend"
packagePrefixes = ["com/realworld/springmongo"]
enableTestAgent {
version="0.23.3"
logLevel = "TRACE"
logFile = "./drill-log.log"
additionalParams = [
"devToolsProxyAddress": "http://localhost:8093",
"withJsCoverage": "false",
"devtoolsAddressReplaceLocalhost": "host.docker.internal",
]
}
}
}