File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ lazy val demo = project
99
99
.dependsOn(renderJs)
100
100
.settings(
101
101
shared,
102
- dontPublish ,
102
+ skip.in(publish) := true ,
103
103
plotlyPrefix,
104
104
test in Test := (),
105
105
testOnly in Test := (),
@@ -145,7 +145,7 @@ lazy val tests = project
145
145
.dependsOn(coreJvm, renderJvm)
146
146
.settings(
147
147
shared,
148
- dontPublish ,
148
+ skip.in(publish) := true ,
149
149
plotlyPrefix,
150
150
fetchTestData,
151
151
libraryDependencies ++= Seq (
@@ -177,5 +177,5 @@ lazy val `plotly-scala` = project
177
177
)
178
178
.settings(
179
179
shared,
180
- dontPublish
180
+ skip.in(publish) := true ,
181
181
)
Original file line number Diff line number Diff line change @@ -113,12 +113,6 @@ object Settings {
113
113
}
114
114
)
115
115
116
- lazy val dontPublish = Seq (
117
- publish := (),
118
- publishLocal := (),
119
- publishArtifact := false
120
- )
121
-
122
116
lazy val plotlyPrefix = {
123
117
name := " plotly-" + name.value
124
118
}
You can’t perform that action at this time.
0 commit comments