diff --git a/build.gradle b/build.gradle index 014cebaec26..6e65dcf2ccc 100644 --- a/build.gradle +++ b/build.gradle @@ -19,9 +19,10 @@ buildscript { repositories { mavenCentral() } - dependencies { - classpath "cz.alenkacz:gradle-scalafmt:${gradle.scalafmt.version}" - } + // temporary exclude scalafmt plugin because of removed dependency to cz.alenkacz.gradle.scalafmt + //dependencies { + // classpath "cz.alenkacz:gradle-scalafmt:${gradle.scalafmt.version}" + //} } plugins { @@ -37,8 +38,9 @@ buildScan { } subprojects { - apply plugin: 'scalafmt' - scalafmt.configFilePath = gradle.scalafmt.config + // temporary exclude scalafmt plugin because of removed dependency to cz.alenkacz.gradle.scalafmt + //apply plugin: 'scalafmt' + //scalafmt.configFilePath = gradle.scalafmt.config group 'org.apache.openwhisk' version '1.0.0-SNAPSHOT' diff --git a/tools/travis/scan.sh b/tools/travis/scan.sh index 4c9add9450e..9c055879dff 100755 --- a/tools/travis/scan.sh +++ b/tools/travis/scan.sh @@ -38,7 +38,7 @@ scancode/scanCode.py --config scancode/ASF-Release.cfg $ROOTDIR # run scalafmt checks cd $ROOTDIR -TERM=dumb ./gradlew checkScalafmtAll +#TERM=dumb ./gradlew checkScalafmtAll # lint tests to all be actually runnable MISSING_TESTS=$(grep -rL "RunWith" --include="*Tests.scala" tests)