Split project to submodules

This commit is contained in:
2021-01-31 10:22:27 +01:00
parent aa81a9d608
commit 8d1f78cb1d
44 changed files with 73 additions and 29 deletions

39
game/build.gradle Executable file
View File

@@ -0,0 +1,39 @@
plugins {
id 'org.springframework.boot' version "$springBootVersion"
id 'io.spring.dependency-management' version "$springDependencyManagementVersion"
id 'java'
id 'application'
}
group 'com.bartlomiejpluta.base'
version 'unspecified'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation project(":engine")
// Spring
implementation 'org.springframework.boot:spring-boot-starter'
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 {
// Define the main class for the application.
mainClass = 'com.bartlomiejpluta.base.game.App'
}