[Editor] Leverage Spring Framework to work as DI container

This commit is contained in:
2021-02-04 08:17:44 +01:00
parent 7a5ba2c4e2
commit db55743aed
5 changed files with 32 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'org.openjfx.javafxplugin' version '0.0.8'
id 'org.springframework.boot' version "$springBootVersion"
id 'io.spring.dependency-management' version "$springDependencyManagementVersion"
id 'idea'
}
@@ -35,4 +37,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "no.tornado:tornadofx:${tornadoFxVersion}"
implementation "org.joml:joml:${jomlVersion}"
// Spring
implementation 'org.springframework.boot:spring-boot-starter'
}