MarginaliaSearch/code/common/config/build.gradle

38 lines
925 B
Groovy
Raw Normal View History

2023-03-04 12:19:01 +00:00
plugins {
id 'java'
2023-03-04 12:19:01 +00:00
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
2023-03-04 12:19:01 +00:00
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
2023-03-04 12:19:01 +00:00
dependencies {
implementation project(':code:common:db')
implementation project(':code:common:model')
implementation libs.bundles.slf4j
implementation libs.bundles.mariadb
implementation libs.mockito
implementation libs.guice
implementation libs.gson
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation project(':code:libraries:test-helpers')
testImplementation platform('org.testcontainers:testcontainers-bom:1.17.4')
testImplementation 'org.testcontainers:mariadb:1.17.4'
testImplementation 'org.testcontainers:junit-jupiter:1.17.4'
testImplementation project(':code:libraries:test-helpers')
2023-03-04 12:19:01 +00:00
}