-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (25 loc) · 861 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'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
//Para funcionar precisa ter essas dependencias
testImplementation ("org.seleniumhq.selenium:selenium-java:4.17.0")
testImplementation ("org.junit.jupiter:junit-jupiter-engine:5.10.0")
implementation group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '4.1.0'
// https://mvnrepository.com/artifact/com.github.javafaker/javafaker
implementation group: 'com.github.javafaker', name: 'javafaker', version: '1.0.2'
}
tasks.test {
useJUnitPlatform()
//Para funcionar precisa ter essas dependencias
testLogging {
events ("passed", "skipped", "failed")
}
}