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 2cb38a4 commit 6d8d5afCopy full SHA for 6d8d5af
project/Common.scala
@@ -29,8 +29,8 @@ object CommonSettings extends AutoPlugin {
29
ScmInfo(url("https://github.com/lightbend/kalix-jvm-sdk"), "scm:[email protected]:lightbend/kalix-jvm-sdk.git")),
30
startYear := Some(2021),
31
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
32
- scalafmtOnCompile := true,
33
- javafmtOnCompile := true,
+ scalafmtOnCompile := !insideCI.value,
+ javafmtOnCompile := !insideCI.value,
34
scalaVersion := Dependencies.ScalaVersion,
35
run / javaOptions ++= {
36
sys.props.collect { case (key, value) if key.startsWith("akka") => s"-D$key=$value" }(breakOut)
0 commit comments