We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcf2f4f commit ac90825Copy full SHA for ac90825
build.gradle.kts
@@ -10,11 +10,7 @@ plugins {
10
id("com.vanniktech.maven.publish")
11
}
12
13
-val KTFMT_VERSION = "0.37"
14
-
15
-mavenPublish {
16
- sonatypeHost = null
17
-}
+mavenPublish { sonatypeHost = null }
18
19
publishing {
20
repositories {
@@ -35,13 +31,14 @@ publishing {
35
31
36
32
37
33
spotless {
34
+ val ktfmtVersion = "0.37"
38
kotlin {
39
- ktfmt(KTFMT_VERSION).googleStyle()
+ ktfmt(ktfmtVersion).googleStyle()
40
target("**/*.kt")
41
targetExclude("**/build/")
42
43
kotlinGradle {
44
45
target("**/*.kts")
46
47
0 commit comments