-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (32 loc) · 1.1 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
plugins {
id 'java'
id "org.sonarqube" version "3.4.0.2513"
}
group 'jalasoft'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation group: 'org.testng', name: 'testng', version: '7.6.0'
testImplementation 'io.qameta.allure:allure-testng:2.17.2'
implementation group: 'io.rest-assured', name: 'rest-assured', version: '5.1.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.2'
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '2.0.0-alpha7'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.3'
}
test {
useTestNG()
testLogging.events("standardOut", "started", "passed", "skipped", "failed")
testLogging.showExceptions = true
testLogging.showCauses = true
testLogging.showStackTraces = true
testLogging.showStandardStreams = true
}
sonarqube {
properties {
property "sonar.projectKey", "testng-todo.ly"
property "sonar.organization", "testng-g1"
property "sonar.host.url", "https://sonarcloud.io"
}
}