This repository was archived by the owner on Jan 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,10 @@ buildscript {
1919 repositories {
2020 mavenCentral()
2121 }
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+ // }
2526}
2627
2728plugins {
@@ -37,8 +38,9 @@ buildScan {
3738}
3839
3940subprojects {
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
4244
4345 group ' org.apache.openwhisk'
4446 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
3838
3939# run scalafmt checks
4040cd $ROOTDIR
41- TERM=dumb ./gradlew checkScalafmtAll
41+ # TERM=dumb ./gradlew checkScalafmtAll
4242
4343# lint tests to all be actually runnable
4444MISSING_TESTS=$( grep -rL " RunWith" --include=" *Tests.scala" tests)
You can’t perform that action at this time.
0 commit comments