added jpms-check plugin

This commit is contained in:
2020-10-25 01:36:04 +02:00
parent fcb9dafac5
commit 4941481ad9
27 changed files with 1152 additions and 66 deletions

View File

@@ -0,0 +1,7 @@
repositories {
jcenter()
}
plugins {
`kotlin-dsl`
}

View File

@@ -0,0 +1,5 @@
import org.gradle.api.Project
operator fun Project.get(key : String) : String? {
return property(key) as String?
}