v1 extended analysis render

This commit is contained in:
2026-06-14 20:10:55 +02:00
parent ab474c0766
commit 744439c99d
13 changed files with 2404 additions and 90 deletions

View File

@@ -0,0 +1,42 @@
plugins {
id 'java'
id 'application'
}
group = 'click.kamil.springstatemachineexporter'
version = '1.0.0'
application {
mainClass = 'click.kamil.springstatemachineexporter.html.Main'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation project(':state_machine_exporter')
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'net.sourceforge.plantuml:plantuml:1.2024.3'
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.38.0'
implementation 'org.slf4j:slf4j-api:2.0.12'
implementation 'info.picocli:picocli:4.7.6'
compileOnly 'org.projectlombok:lombok:1.18.46'
annotationProcessor 'org.projectlombok:lombok:1.18.46'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.assertj:assertj-core:3.27.7'
}
tasks.named('test') {
useJUnitPlatform()
}