-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle
34 lines (29 loc) · 1.04 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
ext {
versions = [
project: '2.1.0',
json: '20240303', // org.json:json
snakeyaml: '1.33', // org.yaml:snakeyaml
okhttp: '4.12.0', // com.squareup.okhttp3:okhttp
socket: '2.1.1', // io.socket:socket.io-client
jline: '2.14.6', // jline:jline
javalin: '6.3.0', // io.javalin:javalin
slf4j: '2.0.16', // org.slf4j:slf4j-simple
jackson: '2.18.0', // com.fasterxml.jackson.core:jackson-databind
junit: '5.11.2', // org.junit:junit-bom
jmh: '1.37', // org.openjdk.jmh:jmh-core
assertj: '3.26.3' // org.assertj:assertj-core
]
}
allprojects {
repositories {
mavenCentral()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile).tap {
configureEach {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
}