-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathbuild.gradle
47 lines (39 loc) · 1.36 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
42
43
44
45
46
47
plugins {
id 'java'
}
group 'io.github.tahanima'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.seleniumhq.selenium:selenium-java:4.20.0'
implementation 'org.aeonbits.owner:owner:1.0.12'
implementation 'com.univocity:univocity-parsers:2.9.1'
implementation 'com.aventstack:extentreports:5.1.1'
implementation 'com.assertthat:selenium-shutterbug:1.6'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.apache.commons:commons-text:1.12.0'
implementation 'org.slf4j:slf4j-api:2.0.13'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testCompileOnly 'org.projectlombok:lombok:1.18.32'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation 'org.testng:testng:7.10.1'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.slf4j:slf4j-simple:2.0.13'
}
test {
systemProperties = System.getProperties() as Map<String, ?>
def group = System.getProperty('group', 'regression')
def thread = System.getProperty('thread', '100')
useTestNG() {
includeGroups group
parallel 'classes'
threadCount thread as int
}
}