Apply lost io.spring.javaformat plugin
Signed-off-by: Vincent Potucek <vpotucek@me.com>
This commit is contained in:
parent
418883cc23
commit
ad26a11827
|
@ -1,9 +1,12 @@
|
|||
plugins {
|
||||
id 'java-gradle-plugin'
|
||||
id 'checkstyle'
|
||||
id 'io.spring.javaformat'
|
||||
id 'io.spring.javaformat' version "${javaFormatVersion}"
|
||||
}
|
||||
|
||||
allprojects {
|
||||
apply plugin: 'io.spring.javaformat'
|
||||
}
|
||||
apply plugin: 'io.spring.javaformat'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -16,6 +19,7 @@ ext {
|
|||
def properties = new Properties()
|
||||
properties.load(it)
|
||||
set("kotlinVersion", properties["kotlinVersion"])
|
||||
set("javaFormatVersion", properties["javaFormatVersion"])
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -66,4 +70,4 @@ test {
|
|||
useJUnitPlatform()
|
||||
}
|
||||
|
||||
jar.dependsOn check
|
||||
jar.dependsOn check
|
Loading…
Reference in New Issue