-
Notifications
You must be signed in to change notification settings - Fork 524
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 830 Bytes
/
build.gradle
File metadata and controls
31 lines (26 loc) · 830 Bytes
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
plugins {
id 'java'
}
group 'ru.netology'
version '1.0-SNAPSHOT'
java {
sourceCompatibility = 11
}
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation 'mysql:mysql-connector-java:8.0.22'
testImplementation 'com.github.javafaker:javafaker:1.0.2'
testImplementation 'commons-dbutils:commons-dbutils:1.7'
testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
testImplementation 'org.slf4j:slf4j-simple:2.0.3'
}
test {
useJUnitPlatform()
systemProperty 'chromeoptions.prefs', System.getProperty('chromeoptions.prefs', "profile.password_manager_leak_detection=false")
}