[Editor] Connect :editor with :game modules - create Game Engine provider
From now on the editor is able to build an output *.jar file taking the :game *.jar artefact as the base
This commit is contained in:
@@ -47,6 +47,17 @@ dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter'
|
||||
}
|
||||
|
||||
task copyGameEngine(type: Copy) {
|
||||
dependsOn(":game:build")
|
||||
|
||||
from project(':game').file('build/libs/game.jar')
|
||||
into file("build/resources/main/engine")
|
||||
}
|
||||
|
||||
processResources {
|
||||
dependsOn(copyGameEngine)
|
||||
}
|
||||
|
||||
build {
|
||||
dependsOn(":proto:build")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user