Skip to content

Commit

Permalink
remove compiler plugin settings from everywhere else
Browse files Browse the repository at this point in the history
  • Loading branch information
tdas committed Aug 1, 2023
1 parent a185517 commit 000d278
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,6 @@ lazy val spark = (project in file("spark"))
"org.apache.spark" %% "spark-core" % sparkVersion % "test" classifier "tests",
"org.apache.spark" %% "spark-sql" % sparkVersion % "test" classifier "tests",
"org.apache.spark" %% "spark-hive" % sparkVersion % "test" classifier "tests",

// Compiler plugins
// -- Bump up the genjavadoc version explicitly to 0.18 to work with Scala 2.12
compilerPlugin(
"com.typesafe.genjavadoc" %% "genjavadoc-plugin" % "0.18" cross CrossVersion.full)
),
Compile / packageBin / mappings := (Compile / packageBin / mappings).value ++
listPythonFiles(baseDirectory.value.getParentFile / "python"),
Expand Down Expand Up @@ -934,7 +929,6 @@ lazy val flink = (project in file("connectors/flink"))
ExclusionRule("org.apache.logging.log4j"),
ExclusionRule("com.google.protobuf", "protobuf-java"),
),
compilerPlugin("com.typesafe.genjavadoc" %% "genjavadoc-plugin" % "0.18" cross CrossVersion.full)
),
// generating source java class with version number to be passed during commit to the DeltaLog as engine info
// (part of transaction's metadata)
Expand Down
2 changes: 1 addition & 1 deletion project/Unidoc.scala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ object Unidoc {
.enablePlugins(GenJavadocPlugin, PublishJavadocPlugin, JavaUnidocPlugin)
.settings(
libraryDependencies ++= Seq(
// Ensure genJavaDoc plugin is of the right version
// Ensure genJavaDoc plugin is of the right version that works with Scala 2.12
compilerPlugin(
"com.typesafe.genjavadoc" %% "genjavadoc-plugin" % "0.18" cross CrossVersion.full)
),
Expand Down

0 comments on commit 000d278

Please sign in to comment.