Skip to content

Commit a7f7e28

Browse files
committed
Don't publish artifacts for test-utils
1 parent 6cbe7f2 commit a7f7e28

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ lazy val javaxSecurity = project
3434
lazy val testUtils = project
3535
.in(file("test-utils"))
3636
.enablePlugins(ScalaNativePlugin, ScalaNativeJUnitPlugin)
37-
.settings(Compile / publishArtifact := false)
37+
.settings(
38+
Compile / publishArtifact := false,
39+
publish / skip := true
40+
)
3841

3942
def withTestUtils = Def.settings(
4043
Test / unmanagedSourceDirectories += (testUtils / sourceDirectory).value

0 commit comments

Comments
 (0)