forked from Drill4J/realworld-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 787 Bytes
/
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
plugins {
id 'java'
id 'com.epam.drill.agent.runner.autotest' version '0.2.2'
}
group 'com.epam'
version '1.0-SNAPSHOT'
allprojects {
repositories {
mavenCentral()
}
dependencies {
apply plugin: 'java'
apply plugin: 'com.epam.drill.agent.runner.autotest'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testCompile 'com.codeborne:selenide:5.19.0'
}
drill {
version = "0.15.0-js-coverage"
adminHost = "localhost"
groupId = "realworld-app"
adminPort = 8090
additionalParams = [
"dispatcherUrl": "localhost:5003",
"agentUrl" : "localhost:8080"
]
}
}