Skip to content

Commit 0736e12

Browse files
committed
Revert "spin off properties to a separate artifact"
This reverts commit 9b9c103.
1 parent f3ddff7 commit 0736e12

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

build.sbt

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ def inferJavaHome() = {
2222
Some(actualHome)
2323
}
2424

25-
lazy val properties = project
26-
.in(file("scalafix-properties"))
25+
lazy val interfaces = project
26+
.in(file("scalafix-interfaces"))
2727
.settings(
2828
Compile / resourceGenerators += Def.task {
2929
val props = new java.util.Properties()
@@ -43,16 +43,6 @@ lazy val properties = project
4343
IO.write(props, "Scalafix version constants", out)
4444
List(out)
4545
},
46-
moduleName := "scalafix-properties",
47-
mimaPreviousArtifacts := Set.empty,
48-
crossPaths := false,
49-
autoScalaLibrary := false
50-
)
51-
.disablePlugins(ScalafixPlugin)
52-
53-
lazy val interfaces = project
54-
.in(file("scalafix-interfaces"))
55-
.settings(
5646
(Compile / javacOptions) ++= List(
5747
"-Xlint:all",
5848
"-Werror"
@@ -66,7 +56,6 @@ lazy val interfaces = project
6656
autoScalaLibrary := false
6757
)
6858
.disablePlugins(ScalafixPlugin)
69-
.dependsOn(properties)
7059

7160
// Scala 3 macros vendored separately (i.e. without runtime classes), to
7261
// shadow Scala 2.13 macros in the Scala 3 compiler classpath, while producing

0 commit comments

Comments
 (0)