Skip to content

Commit

Permalink
Merge pull request #62 from danicheg/sbt-plugin-fixes
Browse files Browse the repository at this point in the history
Some minor sbt plugin tweaks
  • Loading branch information
danicheg authored Dec 10, 2023
2 parents 07c62a4 + b3274f3 commit ba80c85
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ lazy val profilingSbtPlugin = project
.settings(
name := "sbt-scalac-profiling",
scalaVersion := bin212.head,
sbtPlugin := true,
scriptedLaunchOpts ++= Seq(
"-Xmx2048M",
"-Xms1024M",
Expand All @@ -128,7 +129,7 @@ lazy val profilingSbtPlugin = project
),
scriptedBufferLog := false
)
.enablePlugins(SbtPlugin)
.enablePlugins(ScriptedPlugin)

// Source dependencies are specified in `project/BuildPlugin.scala`
lazy val integrations = project
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
> profilingWarmupCompiler
> set checkCompilerIsWarmedUp in Compile := true
> set Compile / checkCompilerIsWarmedUp := true
> profilingWarmupCompiler
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
> test:profilingWarmupCompiler
> set checkCompilerIsWarmedUp in Test := true
> set Test / checkCompilerIsWarmedUp := true
> test:profilingWarmupCompiler

0 comments on commit ba80c85

Please sign in to comment.