Improve :engine and :game modules Gradle build scripts

This commit is contained in:
2021-02-10 13:31:31 +01:00
parent 3160a65f95
commit d405b01316
2 changed files with 13 additions and 30 deletions

View File

@@ -40,21 +40,8 @@ dependencies {
implementation project(":engine")
implementation project(":proto")
implementation platform("org.lwjgl:lwjgl-bom:$lwjglVersion")
// LWJGL
implementation "org.lwjgl:lwjgl-glfw"
// Spring
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-aop'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// This dependency is used by the application.
implementation "com.google.guava:guava:${guavaVersion}"
implementation "org.joml:joml:${jomlVersion}"
}
application {
@@ -63,5 +50,6 @@ application {
}
build {
dependsOn(":engine:build")
dependsOn(":proto:build")
}