2023-09-11 12:08:40 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2023-09-23 09:01:43 +00:00
|
|
|
|
2023-09-11 12:08:40 +00:00
|
|
|
|
|
|
|
id 'jvm-test-suite'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2024-04-24 11:54:04 +00:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
2023-09-11 12:08:40 +00:00
|
|
|
}
|
|
|
|
}
|
2024-02-23 15:13:40 +00:00
|
|
|
apply from: "$rootProject.projectDir/srcsets.gradle"
|
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
jar.archiveBaseName = 'converting-process-model'
|
|
|
|
|
2023-09-11 12:08:40 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-07-27 09:44:13 +00:00
|
|
|
implementation project(':code:libraries:slop')
|
2023-09-11 12:08:40 +00:00
|
|
|
implementation project(':third-party:parquet-floor')
|
2024-05-30 12:20:36 +00:00
|
|
|
implementation project(':code:libraries:coded-sequence')
|
2023-09-11 12:08:40 +00:00
|
|
|
|
|
|
|
implementation libs.notnull
|
2024-05-28 12:18:03 +00:00
|
|
|
implementation libs.roaringbitmap
|
2023-09-11 12:08:40 +00:00
|
|
|
implementation libs.trove
|
|
|
|
implementation libs.bundles.parquet
|
|
|
|
|
|
|
|
testImplementation libs.bundles.slf4j.test
|
|
|
|
testImplementation libs.bundles.junit
|
|
|
|
testImplementation libs.mockito
|
2024-07-29 12:00:43 +00:00
|
|
|
testImplementation project(':code:libraries:test-helpers')
|
2023-09-11 12:08:40 +00:00
|
|
|
}
|
|
|
|
|