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")
7474 releaseStepCommandAndRemaining(" verify" ),
7575 setReleaseVersion,
7676 tagRelease,
77- releaseStepCommandAndRemaining(" ^publish" ),
77+ releaseStepCommandAndRemaining(" +bindings/publish" ),
78+ releaseStepCommandAndRemaining(" +tools/publish" ),
79+ releaseStepCommandAndRemaining(" ^sbt-scala-native-bindgen/publish" ),
7880 pushChanges,
7981 releaseStepTask(docs / ghpagesPushSite)
8082 )
@@ -112,6 +114,11 @@ lazy val samples = project("samples")
112114 )
113115
114116lazy val tools = project(" tools" )
117+ .settings(
118+ crossScalaVersions := List (Versions .scala210,
119+ Versions .scala211,
120+ Versions .scala212)
121+ )
115122
116123lazy val sbtPlugin = project(" sbt-scala-native-bindgen" , ScriptedPlugin )
117124 .dependsOn(tools)
@@ -170,7 +177,8 @@ lazy val docs = project("docs")
170177
171178lazy val bindings = project(" bindings" )
172179 .settings(
173- publish / skip := false
180+ publish / skip := true ,
181+ scalaVersion := Versions .scala211
174182 )
175183 .aggregate(
176184 libiconv,
You can’t perform that action at this time.
0 commit comments