Skip to content

Commit 9dee5ce

Browse files
Clean-up build settings
1 parent ef02a23 commit 9dee5ce

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ lazy val demo = project
9999
.dependsOn(renderJs)
100100
.settings(
101101
shared,
102-
dontPublish,
102+
skip.in(publish) := true,
103103
plotlyPrefix,
104104
test in Test := (),
105105
testOnly in Test := (),
@@ -145,7 +145,7 @@ lazy val tests = project
145145
.dependsOn(coreJvm, renderJvm)
146146
.settings(
147147
shared,
148-
dontPublish,
148+
skip.in(publish) := true,
149149
plotlyPrefix,
150150
fetchTestData,
151151
libraryDependencies ++= Seq(
@@ -177,5 +177,5 @@ lazy val `plotly-scala` = project
177177
)
178178
.settings(
179179
shared,
180-
dontPublish
180+
skip.in(publish) := true,
181181
)

project/Settings.scala

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,6 @@ object Settings {
113113
}
114114
)
115115

116-
lazy val dontPublish = Seq(
117-
publish := (),
118-
publishLocal := (),
119-
publishArtifact := false
120-
)
121-
122116
lazy val plotlyPrefix = {
123117
name := "plotly-" + name.value
124118
}

0 commit comments

Comments
 (0)