Skip to content

Commit

Permalink
APSR-1611: Fixing build problem, attempt 2 (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsgp authored Feb 23, 2023
1 parent cb08116 commit 282523a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import sbt.Keys._
import sbt._
import uk.gov.hmrc.DefaultBuildSettings
import uk.gov.hmrc.DefaultBuildSettings._
import uk.gov.hmrc.sbtdistributables.SbtDistributablesPlugin
import bloop.integrations.sbt.BloopDefaults

Global / bloopAggregateSourceDependencies := true
Expand All @@ -22,10 +23,10 @@ inThisBuild(
)
)

lazy val plugins: Seq[Plugins] = Seq.empty
lazy val plugins: Seq[Plugins] = Seq(PlayScala, SbtDistributablesPlugin)
lazy val playSettings: Seq[Setting[_]] = Seq.empty
lazy val microservice = Project(appName, file("."))
.enablePlugins(Seq(PlayScala) ++ plugins: _*)
.enablePlugins(plugins: _*)
.settings(
name := appName
)
Expand Down

0 comments on commit 282523a

Please sign in to comment.