introduce gradle.properties

This commit is contained in:
aanno 2021-02-09 12:22:26 +01:00
parent 7a86423487
commit e9deea7a33
3 changed files with 13 additions and 2 deletions

View file

@ -3,6 +3,12 @@ plugins {
`check-lib-versions`
}
val projectVersion: String by project
val mavenGroup: String by project
version = projectVersion
group = mavenGroup
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11