Skip to content

Commit

Permalink
Fix val init order
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Jan 26, 2022
1 parent 23c0288 commit f10b853
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/org/http4s/sbt/Http4sOrgPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ object Http4sOrgPlugin extends AutoPlugin {

override def buildSettings = organizationSettings ++ githubActionsSettings

val organizationSettings: Seq[Setting[_]] =
lazy val organizationSettings: Seq[Setting[_]] =
Seq(
organization := "org.http4s",
organizationName := "http4s.org"
)

val githubActionsSettings: Seq[Setting[_]] =
lazy val githubActionsSettings: Seq[Setting[_]] =
Seq(
githubWorkflowJavaVersions := List("8", "11", "17").map(JavaSpec.temurin(_)),
githubWorkflowBuildPostamble ++= Seq(
Expand Down

0 comments on commit f10b853

Please sign in to comment.