MarginaliaSearch/code/common/config/build.gradle

32 lines
596 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(21))
2023-03-04 12:19:01 +00:00
}
}
dependencies {
2023-03-07 16:14:32 +00:00
implementation project(':code:common:service-discovery')
implementation project(':code:common:service-client')
2023-03-04 12:19:01 +00:00
}
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"
}
}