2023-03-04 12:19:01 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2024-02-22 13:01:23 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 09:01:43 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-02-20 10:41:14 +00:00
|
|
|
implementation libs.bundles.curator
|
|
|
|
implementation libs.guice
|
2024-02-22 13:01:23 +00:00
|
|
|
implementation libs.bundles.gson
|
2024-02-20 10:41:14 +00:00
|
|
|
implementation libs.bundles.mariadb
|
|
|
|
implementation libs.bundles.grpc
|
|
|
|
implementation libs.notnull
|
|
|
|
|
2023-03-04 12:19:01 +00:00
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2024-02-20 10:41:14 +00:00
|
|
|
|
|
|
|
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
|
|
|
|
testImplementation 'org.testcontainers:mariadb:1.17.4'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
|
2024-02-22 13:01:23 +00:00
|
|
|
testImplementation project(':code:functions:math:api')
|
2023-03-04 12:19:01 +00:00
|
|
|
}
|