Skip to content

Commit

Permalink
Don't publish artifacts for test-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Apr 11, 2024
1 parent 6cbe7f2 commit a7f7e28
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ lazy val javaxSecurity = project
lazy val testUtils = project
.in(file("test-utils"))
.enablePlugins(ScalaNativePlugin, ScalaNativeJUnitPlugin)
.settings(Compile / publishArtifact := false)
.settings(
Compile / publishArtifact := false,
publish / skip := true
)

def withTestUtils = Def.settings(
Test / unmanagedSourceDirectories += (testUtils / sourceDirectory).value
Expand Down

0 comments on commit a7f7e28

Please sign in to comment.