-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (30 loc) · 1.17 KB
/
build.gradle.kts
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
plugins {
id("java")
id ("io.qameta.allure") version "2.11.2"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation ("org.junit.jupiter:junit-jupiter-api:5.9.2")
testImplementation ("org.junit.jupiter:junit-jupiter-engine:5.9.2")
testImplementation ("org.testng:testng:7.3.0")
testImplementation ("io.rest-assured:rest-assured:5.1.0")
implementation ("io.qameta.allure:allure-testng:2.20.0")
implementation ("com.fasterxml.jackson.core:jackson-databind:2.13.3")
implementation ("com.google.code.gson:gson:2.8.9")
implementation("org.projectlombok:lombok:1.18.22")
implementation ("io.qameta.allure:allure-java-commons:2.20.0")
implementation ("io.qameta.allure:allure-rest-assured:2.20.1")
implementation ("org.seleniumhq.selenium:selenium-java:4.8.3")
implementation ("com.github.mifmif:generex:1.0.2")
implementation ("io.github.bonigarcia:webdrivermanager:5.3.0")
implementation ("gov.nist.math:jama:1.0.3")
testAnnotationProcessor("org.projectlombok:lombok:1.18.22")
testImplementation ("org.aspectj:aspectjweaver:1.9.8")
}
tasks.test {
useTestNG()
}