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 2359971 commit 9fe13c4Copy full SHA for 9fe13c4
build.gradle
@@ -62,7 +62,6 @@ allprojects {
62
ext.dirtyMarker = "-DIRTY"
63
64
apply plugin: 'com.cinnober.gradle.semver-git'
65
- apply plugin: 'com.diffplug.spotless'
66
apply plugin: 'idea'
67
68
group = 'com.yubico'
@@ -91,12 +90,15 @@ subprojects {
91
90
mavenCentral()
92
}
93
94
- spotless {
95
- java {
96
- googleJavaFormat()
97
- }
98
- scala {
99
- scalafmt('2.6.3').configFile(rootProject.file('scalafmt.conf'))
+ if (project !== project(':test-platform')) {
+ apply plugin: 'com.diffplug.spotless'
+ spotless {
+ java {
+ googleJavaFormat()
+ }
+ scala {
100
+ scalafmt('2.6.3').configFile(rootProject.file('scalafmt.conf'))
101
102
103
104
0 commit comments