Modularise project

This commit is contained in:
Frank van der Heijden 2020-07-03 15:52:56 +02:00
parent 2be3825438
commit 4416d55173
No known key found for this signature in database
GPG key ID: 26DA56488D314D11
55 changed files with 388 additions and 331 deletions

11
Common/build.gradle Normal file
View file

@ -0,0 +1,11 @@
group = rootProject.group + '.common'
version = rootProject.version
archivesBaseName = rootProject.name + '-Common'
repositories {
mavenCentral()
}
dependencies {
compileOnly 'com.google.code.gson:gson:2.8.6'
}