File tree Expand file tree Collapse file tree 3 files changed +8
-29
lines changed Expand file tree Collapse file tree 3 files changed +8
-29
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 (
@@ -162,20 +162,5 @@ lazy val almond = project
162
162
libraryDependencies += Deps .almondScalaApi % " provided"
163
163
)
164
164
165
-
166
- lazy val `plotly-scala` = project
167
- .in(file(" ." ))
168
- .aggregate(
169
- coreJvm,
170
- coreJs,
171
- `joda-time`,
172
- renderJvm,
173
- renderJs,
174
- demo,
175
- tests,
176
- almond
177
- )
178
- .settings(
179
- shared,
180
- dontPublish
181
- )
165
+ crossScalaVersions := Nil
166
+ skip.in(publish) := true ,
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
}
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ import sbt._
4
4
object WebDeps {
5
5
6
6
object Versions {
7
- def plotlyJs = " 1.41.3 "
7
+ def plotlyJs = " 1.52.2 "
8
8
}
9
9
10
- def bootstrap = " org.webjars.bower" % " bootstrap" % " 3.3.7 "
11
- def jquery = " org.webjars.bower" % " jquery" % " 2.2.4 "
10
+ def bootstrap = " org.webjars.bower" % " bootstrap" % " 3.4.0 "
11
+ def jquery = " org.webjars.bower" % " jquery" % " 3.3.1 "
12
12
def plotlyJs = " org.webjars.bower" % " plotly.js" % Versions .plotlyJs
13
- def prism = " org.webjars.bower" % " prism" % " 1.5.1 "
13
+ def prism = " org.webjars.bower" % " prism" % " 1.15.0 "
14
14
15
15
}
You can’t perform that action at this time.
0 commit comments