-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (28 loc) · 944 Bytes
/
build.gradle.kts
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
plugins {
kotlin("jvm") version "2.0.10"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
implementation("net.sourceforge.htmlunit:htmlunit:2.52.0")
implementation("org.seleniumhq.selenium:selenium-firefox-driver:3.+")
implementation("org.seleniumhq.selenium:selenium-chrome-driver:3.+")
implementation("org.seleniumhq.selenium:selenium-java:3.+")
implementation("com.squareup.okhttp3:okhttp:4.9.3")
implementation("org.json:json:20200518")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-json-org:2.11.0")
implementation("net.lightbody.bmp:browsermob-core:2.1.5")
implementation ("org.apache.commons:commons-csv:1.5")
implementation("org.ktorm:ktorm-core:3.4.1")
implementation("org.xerial:sqlite-jdbc:3.18.0")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}