Skip to content

Commit

Permalink
Disable the unusedCompileDependenciesTest for native modules
Browse files Browse the repository at this point in the history
  • Loading branch information
danicheg committed Mar 12, 2024
1 parent d7695d7 commit 977e0be
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.jsSettings(
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) }
)
.nativeSettings(
unusedCompileDependenciesTest := ()
)
.disablePlugins(HeaderPlugin)

lazy val codeGenerator =
Expand Down Expand Up @@ -118,6 +121,9 @@ lazy val codeGeneratorTesting = crossProject(JVMPlatform, JSPlatform, NativePlat
),
githubWorkflowArtifactUpload := false,
)
.nativeSettings(
unusedCompileDependenciesTest := ()
)
.disablePlugins(HeaderPlugin, ScalafixPlugin)

lazy val site = project
Expand Down

0 comments on commit 977e0be

Please sign in to comment.