@@ -89,13 +89,7 @@ lazy val bloopShared = (project in file("shared"))
89
89
* ************************************************************************************************
90
90
*/
91
91
import build .Dependencies
92
- import build .Dependencies .{
93
- Scala210Version ,
94
- Scala211Version ,
95
- Scala212Version ,
96
- Sbt013Version ,
97
- Sbt1Version
98
- }
92
+ import build .Dependencies .{Scala210Version , Scala211Version , Scala212Version , SbtVersion }
99
93
100
94
lazy val backend = project
101
95
.enablePlugins(BuildInfoPlugin )
@@ -477,46 +471,13 @@ def isJdiJar(file: File): Boolean = {
477
471
else file.getAbsolutePath.contains(SbtJdiTools .JavaTools .getAbsolutePath.toString)
478
472
}
479
473
480
- lazy val integrationUtils211 = project
481
- .in(integrations / " utils" )
482
- .settings(
483
- scalafixSettings,
484
- scalaVersion := Dependencies .Scala211Version ,
485
- libraryDependencies += Dependencies .bloopConfig,
486
- target := (file(
487
- " integrations"
488
- ) / " utils" / " target" / " utils-2.11" ).getAbsoluteFile
489
- )
490
-
491
- lazy val integrationUtils212 = project
492
- .in(integrations / " utils" )
493
- .settings(
494
- scalafixSettings,
495
- scalaVersion := Dependencies .Scala212Version ,
496
- libraryDependencies += Dependencies .bloopConfig,
497
- target := (file(
498
- " integrations"
499
- ) / " utils" / " target" / " utils-2.12" ).getAbsoluteFile
500
- )
501
-
502
- lazy val integrationUtils213 = project
503
- .in(integrations / " utils" )
504
- .settings(
505
- scalafixSettings,
506
- scalaVersion := Dependencies .Scala213Version ,
507
- libraryDependencies += Dependencies .bloopConfig,
508
- target := (file(
509
- " integrations"
510
- ) / " utils" / " target" / " utils-2.13" ).getAbsoluteFile
511
- )
512
-
513
- lazy val sbtBloop10 : Project = project
474
+ lazy val sbtBloop : Project = project
514
475
.enablePlugins(ScriptedPlugin )
515
476
.disablePlugins(ScalafixPlugin )
516
477
.in(integrations / " sbt-bloop" )
517
478
.settings(
518
479
BuildDefaults .scriptedSettings,
519
- sbtPluginSettings(" sbt-bloop" , Sbt1Version ),
480
+ sbtPluginSettings(" sbt-bloop" , SbtVersion ),
520
481
libraryDependencies += Dependencies .bloopConfig
521
482
)
522
483
@@ -626,7 +587,7 @@ val allProjects = Seq(
626
587
backend,
627
588
frontend,
628
589
benchmarks,
629
- sbtBloop10 ,
590
+ sbtBloop ,
630
591
nativeBridge04,
631
592
jsBridge06,
632
593
jsBridge1,
@@ -635,17 +596,14 @@ val allProjects = Seq(
635
596
launcherTest,
636
597
sockets,
637
598
bloopgun,
638
- bloopgun213,
639
- integrationUtils211,
640
- integrationUtils212,
641
- integrationUtils213
599
+ bloopgun213
642
600
)
643
601
644
602
val allProjectsToRelease = Seq [ProjectReference ](
645
603
bloopShared,
646
604
backend,
647
605
frontend,
648
- sbtBloop10 ,
606
+ sbtBloop ,
649
607
nativeBridge04,
650
608
jsBridge06,
651
609
jsBridge1,
@@ -670,7 +628,6 @@ val bloop = project
670
628
.settings(
671
629
releaseEarly := { () },
672
630
(publish / skip) := true ,
673
- crossSbtVersions := Seq (Sbt1Version , Sbt013Version ),
674
631
buildIntegrationsBase := (ThisBuild / Keys .baseDirectory).value / " build-integrations" ,
675
632
publishLocalAllModules := {
676
633
BuildDefaults
@@ -694,7 +651,7 @@ val bloop = project
694
651
build.BuildImplementation
695
652
.exportCommunityBuild(
696
653
buildpress,
697
- sbtBloop10
654
+ sbtBloop
698
655
)
699
656
.value
700
657
}
0 commit comments