-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
42 lines (35 loc) · 881 Bytes
/
build.gradle.kts
File metadata and controls
42 lines (35 loc) · 881 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
32
33
34
35
36
37
38
39
40
plugins {
application
java
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.web3j:core:4.10.3")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-core:2.17.1")
implementation("io.github.cdimascio:dotenv-java:3.0.0")
implementation("org.slf4j:slf4j-api:2.0.13")
implementation("org.slf4j:slf4j-simple:2.0.13")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
sourceSets {
main {
java {
srcDirs("src")
}
}
}
}
application {
mainClass.set("Main")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}