Own-Programming-Language-Tu.../build.gradle

35 lines
1.0 KiB
Groovy
Raw Permalink Normal View History

ext {
versions = [
2023-12-15 22:18:29 +02:00
project: '2.0.0',
2024-05-01 21:33:00 +03:00
json: '20240303', // org.json:json
2024-02-21 21:02:09 +02:00
snakeyaml: '1.33', // org.yaml:snakeyaml
okhttp: '3.14.9', // com.squareup.okhttp3:okhttp
socket: '2.1.0', // io.socket:socket.io-client
2024-01-29 18:38:51 +02:00
jline: '2.14.6', // jline:jline
2024-05-01 21:33:00 +03:00
javalin: '6.1.3', // io.javalin:javalin
slf4j: '2.0.13', // org.slf4j:slf4j-simple
jackson: '2.17.0', // com.fasterxml.jackson.core:jackson-databind
2023-11-09 19:54:26 +02:00
2024-02-21 21:02:09 +02:00
junit: '5.10.2', // org.junit:junit-bom
2023-09-11 19:15:01 +03:00
jmh: '1.37', // org.openjdk.jmh:jmh-core
2024-02-21 21:02:09 +02:00
assertj: '3.25.3' // org.assertj:assertj-core
]
}
2023-08-26 15:59:36 +03:00
allprojects {
repositories {
mavenCentral()
2019-05-22 19:10:48 +03:00
}
2023-08-26 15:59:36 +03:00
gradle.projectsEvaluated {
tasks.withType(JavaCompile).tap {
configureEach {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
2023-08-26 15:59:36 +03:00
}
2019-05-22 19:10:48 +03:00
}
}