41 lines
860 B
Groovy
41 lines
860 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'click.kamil.springstatemachineexporter'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
compileOnly {
|
|
extendsFrom annotationProcessor
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// deps for parsing java AST
|
|
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.36.0'
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.46'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.46'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:6.1.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-params:6.1.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:6.1.0'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:6.1.0'
|
|
testImplementation 'org.assertj:assertj-core:3.27.7'
|
|
}
|
|
|
|
tasks.named('test') {
|
|
useJUnitPlatform()
|
|
}
|