-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
85 lines (62 loc) · 2.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.qameta.allure.gradle.allure:allure-plugin:2.11.0"
}
}
plugins {
id "org.jetbrains.kotlin.jvm" version "1.9.22"
id("io.gitlab.arturbosch.detekt").version("1.23.4")
id("idea")
id("io.qameta.allure") version "2.11.2"
id("application")
}
group 'MetaQuoteTest'
version '1.0'
allure {
version = '2.19.0'
useJUnit5 {
version = '2.19.0'
}
}
detekt {
toolVersion = "1.22.0"
config = files("config/detekt/detekt.yml")
buildUponDefaultConfig = true
}
sourceCompatibility = 17
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.3'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-simple
implementation group: 'org.slf4j', name: 'slf4j-log4j12', version: '2.0.3'
// https://mvnrepository.com/artifact/org.projectlombok/lombok
implementation group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
// https://mvnrepository.com/artifact/org.projectlombok/lombok
testAnnotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
// https://mvnrepository.com/artifact/io.qameta.allure/allure-selenide
implementation group: 'io.qameta.allure', name: 'allure-selenide', version: '2.19.0'
// https://mvnrepository.com/artifact/org.apache.commons/commons-configuration2
implementation group: 'org.apache.commons', name: 'commons-configuration2', version: '2.8.0'
// https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils
implementation group: 'commons-beanutils', name: 'commons-beanutils', version: '1.9.4'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.1'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-engine
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.1'
// https://mvnrepository.com/artifact/com.microsoft.playwright/playwright
implementation group: 'com.microsoft.playwright', name: 'playwright', version: '1.41.0'
// https://mvnrepository.com/artifact/io.github.microutils/kotlin-logging
implementation group: 'io.github.microutils', name: 'kotlin-logging', version: '3.0.2'
}
test {
systemProperty "file.encoding", "utf-8"
useJUnitPlatform()
}