Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit e0bdc89

Browse files
authored
Remove dependency to cz.alenkacz.gradle.scalafmt (#176)
1 parent 93339ac commit e0bdc89

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.gradle

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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

2728
plugins {
@@ -37,8 +38,9 @@ buildScan {
3738
}
3839

3940
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
4244

4345
group 'org.apache.openwhisk'
4446
version '1.0.0-SNAPSHOT'

tools/travis/scan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ scancode/scanCode.py --config scancode/ASF-Release.cfg $ROOTDIR
3838

3939
# run scalafmt checks
4040
cd $ROOTDIR
41-
TERM=dumb ./gradlew checkScalafmtAll
41+
#TERM=dumb ./gradlew checkScalafmtAll
4242

4343
# lint tests to all be actually runnable
4444
MISSING_TESTS=$(grep -rL "RunWith" --include="*Tests.scala" tests)

0 commit comments

Comments
 (0)