-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (42 loc) · 1.18 KB
/
build.gradle
File metadata and controls
52 lines (42 loc) · 1.18 KB
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
plugins {
id("java")
id("application")
}
wrapper {
gradleVersion = "8.10"
distributionType = Wrapper.DistributionType.BIN
}
java.toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
group = "ru.di9"
version = "2.0"
repositories {
mavenLocal()
mavenCentral()
}
ext {
junitVersion = "5.9.2"
jacksonVersion = "2.15.3"
slf4jVersion = "2.0.16"
lombokVersion = "1.18.34"
}
dependencies {
annotationProcessor("org.projectlombok:lombok:$lombokVersion")
compileOnly("org.projectlombok:lombok:$lombokVersion")
implementation("org.apache.httpcomponents.client5:httpclient5:5.5")
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
implementation("org.jsoup:jsoup:1.21.1")
implementation("org.slf4j:slf4j-simple:$slf4jVersion")
implementation("info.picocli:picocli:4.7.7")
testImplementation(platform("org.junit:junit-bom:$junitVersion"))
testImplementation("org.junit.jupiter:junit-jupiter")
//noinspection VulnerableLibrariesLocal
testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.1")
}
test {
useJUnitPlatform()
}
application {
mainClass = "ru.di9.ihc.cli.CliApp"
}