Skip to content

Commit

Permalink
chore(ci): don't format code on CI (#1600)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru authored Apr 27, 2023
1 parent 2cb38a4 commit 6d8d5af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ object CommonSettings extends AutoPlugin {
ScmInfo(url("https://github.com/lightbend/kalix-jvm-sdk"), "scm:[email protected]:lightbend/kalix-jvm-sdk.git")),
startYear := Some(2021),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
scalafmtOnCompile := true,
javafmtOnCompile := true,
scalafmtOnCompile := !insideCI.value,
javafmtOnCompile := !insideCI.value,
scalaVersion := Dependencies.ScalaVersion,
run / javaOptions ++= {
sys.props.collect { case (key, value) if key.startsWith("akka") => s"-D$key=$value" }(breakOut)
Expand Down

0 comments on commit 6d8d5af

Please sign in to comment.