-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (34 loc) · 1.16 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
plugins {
id 'java'
id 'io.qameta.allure' version '2.11.2'
}
group 'io.github.tahanima'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation 'org.aeonbits.owner:owner:1.0.12'
implementation 'com.univocity:univocity-parsers:2.9.1'
implementation 'com.microsoft.playwright:playwright:1.33.0'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.slf4j:slf4j-api:2.0.6'
implementation 'io.qameta.allure:allure-junit-platform:2.22.0'
implementation 'com.github.automatedowl:allure-environment-writer:1.0.0'
compileOnly 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.slf4j:slf4j-simple:2.0.6'
}
test {
systemProperties = System.getProperties() as Map<String, ?>
def group = System.getProperty('group', 'regression')
useJUnitPlatform() {
includeTags group
}
}