-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (36 loc) · 1.06 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'
}
group = 'com.kriuchkov'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
jar {
manifest {
attributes(
'Main-Class': 'com.kriuchkov.Main'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy = 'exclude'
doFirst {
// Exclude signing configurations
exclude 'META-INF/*.SF', 'META-INF/*.DSA', 'META-INF/*.RSA'
}
}
dependencies {
implementation 'commons-io:commons-io:2.15.1'
implementation 'com.opencsv:opencsv:5.9'
implementation 'org.seleniumhq.selenium:selenium-java:4.16.1'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:4.16.1'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:4.16.1'
implementation 'io.github.bonigarcia:webdrivermanager:5.6.3'
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}