[Editor] Install :proto dependency to :game and :editor modules

This commit is contained in:
2021-02-09 18:07:22 +01:00
parent d37ed7eafe
commit 8175b0c966
2 changed files with 10 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ compileTestKotlin {
}
dependencies {
implementation project(":proto")
implementation "org.jetbrains.kotlin:kotlin-stdlib"
implementation "no.tornado:tornadofx:${tornadoFxVersion}"
implementation platform("org.kordamp.ikonli:ikonli-bom:${ikonliVersion}")
@@ -43,3 +44,7 @@ dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter'
}
build {
dependsOn(":proto:build")
}

View File

@@ -38,6 +38,7 @@ repositories {
dependencies {
implementation project(":engine")
implementation project(":proto")
implementation platform("org.lwjgl:lwjgl-bom:$lwjglVersion")
@@ -60,3 +61,7 @@ application {
// Define the main class for the application.
mainClass = 'com.bartlomiejpluta.base.game.App'
}
build {
dependsOn(":proto:build")
}