@@ -24,7 +24,7 @@ def commonSettings: Seq[Setting[_]] = Seq(
24
24
)
25
25
26
26
lazy val compilerInterfaceRoot = (project in file(" ." ))
27
- .aggregate(compilerInterface, utilInterface )
27
+ .aggregate(compilerInterface)
28
28
.settings(
29
29
publish / skip := true ,
30
30
crossScalaVersions := Vector (),
@@ -51,7 +51,6 @@ lazy val compilerInterfaceRoot = (project in file("."))
51
51
// format from which Java sources are generated by the sbt-contraband plugin.
52
52
lazy val compilerInterface = (project in file(" compiler-interface" ))
53
53
.enablePlugins(ContrabandPlugin )
54
- .dependsOn(utilInterface)
55
54
.settings(
56
55
commonSettings,
57
56
name := " Compiler Interface" ,
@@ -92,20 +91,6 @@ lazy val compilerInterface = (project in file("compiler-interface"))
92
91
},
93
92
)
94
93
95
- lazy val utilInterface = (project in file(" util-interface" ))
96
- .settings(
97
- commonSettings,
98
- name := " Util Interface" ,
99
- mimaPreviousArtifacts := Set (
100
- " 1.0.0" , " 1.0.1" , " 1.0.2" , " 1.0.3" ,
101
- " 1.1.0" , " 1.1.1" , " 1.1.2" , " 1.1.3" ,
102
- " 1.2.0" , " 1.2.1"
103
- ) map (version =>
104
- organization.value %% moduleName.value % version
105
- cross (if (crossPaths.value) CrossVersion .binary else CrossVersion .disabled)
106
- )
107
- )
108
-
109
94
ThisBuild / organization := " org.scala-sbt"
110
95
ThisBuild / organizationName := " sbt"
111
96
ThisBuild / organizationHomepage := Some (url(" https://www.scala-sbt.org/" ))
0 commit comments