MarginaliaSearch/code/features-search/random-websites/build.gradle

50 lines
1.0 KiB
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(21))
2023-03-04 12:19:01 +00:00
}
}
dependencies {
2023-03-07 16:14:32 +00:00
implementation project(':code:common:model')
implementation project(':code:common:db')
2023-03-07 16:14:32 +00:00
implementation project(':code:common:service')
2023-03-04 12:19:01 +00:00
implementation libs.bundles.slf4j
implementation libs.guice
implementation libs.roaringbitmap
implementation libs.trove
implementation libs.fastutil
implementation libs.bundles.mariadb
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}
configurations {
e2eTestImplementation.extendsFrom(testImplementation)
}
test {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
maxHeapSize = "8G"
useJUnitPlatform()
}
task fastTests(type: Test) {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
maxHeapSize = "8G"
useJUnitPlatform {
excludeTags "slow"
}
}