From 4cc4108ded68cc3e2b9efe02f403a108a6f843f1 Mon Sep 17 00:00:00 2001 From: kenji yoshida <6b656e6a69@gmail.com> Date: Sat, 11 Oct 2025 16:58:14 +0900 Subject: [PATCH] use new wildcard syntax --- project/common.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/common.scala b/project/common.scala index e8acbd84..1e4ee0e1 100644 --- a/project/common.scala +++ b/project/common.scala @@ -40,7 +40,7 @@ object Common { // inConfig(Soap12)(baseScalaxbSettings ++ inTask(scalaxb)(soapSettings("soapenvelope12"))) // } - val codegenSettings: Seq[Def.Setting[_]] = scalaxbCodegenSettings ++ Seq( + val codegenSettings: Seq[Def.Setting[?]] = scalaxbCodegenSettings ++ Seq( Compile / unmanagedSourceDirectories += baseDirectory.value / "src_managed", buildInfoPackage := "scalaxb", buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion, @@ -50,7 +50,7 @@ object Common { "defaultGigahorseBackend" -> Dependencies.defaultGigahorseBackend), ) - val sonatypeSettings: Seq[Def.Setting[_]] = Seq( + val sonatypeSettings: Seq[Def.Setting[?]] = Seq( Test / publishArtifact := false, ) }