export and import json

This commit is contained in:
2026-06-09 20:23:40 +02:00
parent c94cdc5039
commit 5ebfbbbbdf
28 changed files with 276 additions and 70 deletions

View File

@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'application'
id 'com.gradleup.shadow' version '8.3.5'
id 'com.gradleup.shadow' version '9.0.0'
}
group = 'click.kamil.springstatemachineexporter'
@@ -32,6 +32,11 @@ dependencies {
// deps for parsing java AST
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.36.0'
// Jackson for JSON support
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.1'
compileOnly 'org.projectlombok:lombok:1.18.46'
annotationProcessor 'org.projectlombok:lombok:1.18.46'