fix deprecated old sbt build file syntax (#20949)

This commit is contained in:
kenji yoshida
2025-03-23 19:03:29 +09:00
committed by GitHub
parent 866558f9e7
commit c749919812
38 changed files with 72 additions and 72 deletions

View File

@@ -5,8 +5,8 @@ lazy val root = (project in file(".")).
version := "1.0.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
publishArtifact in (Compile, packageDoc) := false,
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Compile / packageDoc / publishArtifact := false,
resolvers += Resolver.mavenLocal,
libraryDependencies ++= Seq(
"io.swagger" % "swagger-annotations" % "1.6.5",