2023-03-04 13:19:01 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id "io.freefair.lombok" version "5.3.3.3"
|
2023-03-06 18:32:13 +01:00
|
|
|
id 'application'
|
2023-03-04 13:19:01 +01:00
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
2023-04-11 16:20:27 +02:00
|
|
|
application {
|
|
|
|
mainClass = 'nu.marginalia.adjacencies.WebsiteAdjacenciesCalculator'
|
|
|
|
applicationName = 'website-adjacencies-calculator'
|
|
|
|
}
|
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:common:model')
|
2023-04-11 16:20:27 +02:00
|
|
|
implementation project(':code:common:db')
|
2023-03-07 17:14:32 +01:00
|
|
|
implementation project(':code:common:service')
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
implementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
implementation libs.bundles.slf4j
|
2023-04-11 16:20:27 +02:00
|
|
|
|
2023-03-04 13:19:01 +01:00
|
|
|
implementation libs.guice
|
2023-04-11 16:20:27 +02:00
|
|
|
implementation libs.roaringbitmap
|
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.fastutil
|
|
|
|
implementation libs.bundles.mariadb
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2023-04-11 16:20:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
e2eTestImplementation.extendsFrom(testImplementation)
|
2023-03-04 13:19:01 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
2023-04-11 16:20:27 +02:00
|
|
|
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
|
|
|
maxHeapSize = "8G"
|
2023-03-04 13:19:01 +01:00
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
task fastTests(type: Test) {
|
2023-04-11 16:20:27 +02:00
|
|
|
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
|
|
|
maxHeapSize = "8G"
|
2023-03-04 13:19:01 +01:00
|
|
|
useJUnitPlatform {
|
|
|
|
excludeTags "slow"
|
|
|
|
}
|
2023-03-07 16:37:08 +01:00
|
|
|
}
|