This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,10 @@ buildscript {
19
19
repositories {
20
20
mavenCentral()
21
21
}
22
- dependencies {
23
- classpath " cz.alenkacz:gradle-scalafmt:${ gradle.scalafmt.version} "
24
- }
22
+ // temporary exclude scalafmt plugin because of removed dependency to cz.alenkacz.gradle.scalafmt
23
+ // dependencies {
24
+ // classpath "cz.alenkacz:gradle-scalafmt:${gradle.scalafmt.version}"
25
+ // }
25
26
}
26
27
27
28
plugins {
@@ -37,8 +38,9 @@ buildScan {
37
38
}
38
39
39
40
subprojects {
40
- apply plugin : ' scalafmt'
41
- scalafmt. configFilePath = gradle. scalafmt. config
41
+ // temporary exclude scalafmt plugin because of removed dependency to cz.alenkacz.gradle.scalafmt
42
+ // apply plugin: 'scalafmt'
43
+ // scalafmt.configFilePath = gradle.scalafmt.config
42
44
43
45
group ' org.apache.openwhisk'
44
46
version ' 1.0.0-SNAPSHOT'
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ scancode/scanCode.py --config scancode/ASF-Release.cfg $ROOTDIR
38
38
39
39
# run scalafmt checks
40
40
cd $ROOTDIR
41
- TERM=dumb ./gradlew checkScalafmtAll
41
+ # TERM=dumb ./gradlew checkScalafmtAll
42
42
43
43
# lint tests to all be actually runnable
44
44
MISSING_TESTS=$( grep -rL " RunWith" --include=" *Tests.scala" tests)
You can’t perform that action at this time.
0 commit comments