plugins { id 'java' id "io.freefair.lombok" version "5.3.3.3" id 'jvm-test-suite' } java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } } dependencies { implementation project(':libraries:language-processing') implementation project(':libraries:misc') implementation project(':common:config') implementation project(':common:model') implementation libs.lombok annotationProcessor libs.lombok implementation libs.bundles.slf4j implementation libs.bundles.nlp implementation libs.bundles.handlebars testImplementation libs.bundles.slf4j.test testImplementation libs.bundles.junit testImplementation libs.mockito } test { maxHeapSize = "8G" useJUnitPlatform() } task fastTests(type: Test) { maxHeapSize = "8G" useJUnitPlatform { excludeTags "slow" } }