We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91bd966 commit b9a7580Copy full SHA for b9a7580
build.sbt
@@ -17,6 +17,12 @@ ThisBuild / publishArtifact in Test := false
17
ThisBuild / publishMavenStyle := true
18
ThisBuild / releaseCrossBuild := true
19
20
+lazy val noPublish = Seq(
21
+ publishLocal / skip := true,
22
+ publish / skip := true,
23
+ publishTo := Some(Resolver.file("Unused transient repository", file("target/unusedrepo")))
24
+)
25
+
26
lazy val stringdiff =
27
crossProject(JVMPlatform, JSPlatform)
28
.crossType(CrossType.Pure)
@@ -49,7 +55,7 @@ lazy val stringdiff =
49
55
50
56
lazy val root = project
51
57
.in(file("."))
52
- .settings()
58
+ .settings(noPublish)
53
59
.aggregate(
54
60
stringdiff.js,
61
stringdiff.jvm
0 commit comments