File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,14 @@ lazy val pushSiteIfChanged = taskKey[Unit]("push the site if changed")
8
8
9
9
val updateLaunchconfig = TaskKey [File ](" updateLaunchconfig" )
10
10
11
+ lazy val commonSettings = Seq (
12
+ crossSbtVersions := Seq (" 0.13.15" , " 1.0.0-M6" )
13
+ )
14
+
11
15
lazy val root = (project in file(" ." )).
12
16
enablePlugins(BuildInfoPlugin , CrossPerProjectPlugin , PamfletPlugin ).
13
17
settings(
18
+ commonSettings,
14
19
updateLaunchconfig := {
15
20
val mainClassName = (discoveredMainClasses in Compile ).value match {
16
21
case Seq (m) => m
@@ -156,12 +161,12 @@ lazy val root = (project in file(".")).
156
161
lazy val plugin = (project in file(" sbt-conscript" )).
157
162
enablePlugins(CrossPerProjectPlugin ).
158
163
settings(
164
+ commonSettings,
159
165
name := " sbt-conscript" ,
160
166
sbtPlugin := true ,
161
167
bintrayOrganization := Some (" sbt" ),
162
168
bintrayRepository := " sbt-plugin-releases" ,
163
169
bintrayPackage := " sbt-conscript" ,
164
- crossSbtVersions := Seq (" 0.13.15" , " 1.0.0-M6" ),
165
170
ScriptedPlugin .scriptedSettings,
166
171
ScriptedPlugin .scriptedBufferLog := false ,
167
172
// https://github.com/sbt/sbt/issues/3245
You can’t perform that action at this time.
0 commit comments