All checks were successful
CI / build (push) Successful in 5m58s
Also added optional list of exclusion paths
19 lines
428 B
Groovy
19 lines
428 B
Groovy
plugins {
|
|
id 'groovy-gradle-plugin'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility(JavaVersion.VERSION_1_8.toString())
|
|
targetCompatibility(JavaVersion.VERSION_1_8.toString())
|
|
modularity.inferModulePath = false
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("JPMSCheckPlugin") {
|
|
id = "net.woggioni.gradle.jpms-check"
|
|
implementationClass = "net.woggioni.gradle.jpms.check.JPMSCheckPlugin"
|
|
}
|
|
}
|
|
}
|