File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ val root = project("scala-native-bindgen")
74
74
releaseStepCommandAndRemaining(" verify" ),
75
75
setReleaseVersion,
76
76
tagRelease,
77
- releaseStepCommandAndRemaining(" ^publish" ),
77
+ releaseStepCommandAndRemaining(" +bindings/publish" ),
78
+ releaseStepCommandAndRemaining(" +tools/publish" ),
79
+ releaseStepCommandAndRemaining(" ^sbt-scala-native-bindgen/publish" ),
78
80
pushChanges,
79
81
releaseStepTask(docs / ghpagesPushSite)
80
82
)
@@ -112,6 +114,11 @@ lazy val samples = project("samples")
112
114
)
113
115
114
116
lazy val tools = project(" tools" )
117
+ .settings(
118
+ crossScalaVersions := List (Versions .scala210,
119
+ Versions .scala211,
120
+ Versions .scala212)
121
+ )
115
122
116
123
lazy val sbtPlugin = project(" sbt-scala-native-bindgen" , ScriptedPlugin )
117
124
.dependsOn(tools)
@@ -170,7 +177,8 @@ lazy val docs = project("docs")
170
177
171
178
lazy val bindings = project(" bindings" )
172
179
.settings(
173
- publish / skip := false
180
+ publish / skip := true ,
181
+ scalaVersion := Versions .scala211
174
182
)
175
183
.aggregate(
176
184
libiconv,
You can’t perform that action at this time.
0 commit comments