-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
78 lines (68 loc) · 2.64 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
plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'ca.cutterslade.analyze' version '1.7.1'
}
group = 'com.skybit'
version = '0.9-SNAPSHOT'
sourceCompatibility = '8'
repositories {
mavenCentral()
}
dependencyManagement {
dependencies {
dependencySet(group: 'org.slf4j', version: '1.7.32') {
entry 'slf4j-api'
entry 'log4j-over-slf4j'
entry 'jcl-over-slf4j'
entry 'jul-to-slf4j'
}
dependency 'ch.qos.logback:logback-classic:1.2.6'
dependency 'org.apache.commons:commons-lang3:3.8.1'
dependency 'org.liquibase:liquibase-core:3.8.2'
dependency 'commons-io:commons-io:2.8.0'
dependency 'org.apache.httpcomponents:httpclient:4.5.13'
dependency 'org.jsoup:jsoup:1.13.1'
dependency 'org.apache.commons:commons-exec:1.3'
dependency 'org.apache.commons:commons-lang3:3.12.0'
dependencySet(group: 'org.seleniumhq.selenium', version: '4.1.2') {
entry 'selenium-api'
entry 'selenium-java'
entry 'selenium-chrome-driver'
entry 'selenium-support'
entry 'selenium-edge-driver'
entry 'selenium-remote-driver'
entry 'selenium-safari-driver'
entry 'selenium-opera-driver'
entry 'selenium-ie-driver'
entry 'selenium-firefox-driver'
entry 'selenium-devtools-v97'
}
dependency 'org.apache.commons:commons-exec:1.3'
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot'
implementation 'org.springframework.boot:spring-boot-autoconfigure'
implementation 'org.seleniumhq.selenium:selenium-api'
implementation 'org.seleniumhq.selenium:selenium-devtools-v97'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-support'
implementation 'org.apache.httpcomponents:httpclient'
implementation 'org.apache.commons:commons-lang3'
implementation 'org.apache.commons:commons-exec'
implementation 'org.slf4j:slf4j-api'
implementation 'org.springframework:spring-beans'
implementation 'org.springframework:spring-context'
implementation 'org.springframework:spring-core'
implementation 'org.apache.httpcomponents:httpcore'
runtimeOnly 'ch.qos.logback:logback-classic'
runtimeOnly 'org.slf4j:jcl-over-slf4j'
runtimeOnly 'org.slf4j:log4j-over-slf4j'
runtimeOnly 'org.slf4j:jul-to-slf4j'
}
test {
useJUnitPlatform()
}