Skip to content

Commit 9bc0bf7

Browse files
authored
use new wildcard syntax (sbt#190)
1 parent 66d69ef commit 9bc0bf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plugin/src/main/scala/com/github/sbt/junit/jupiter/sbt/JupiterPlugin.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ object JupiterPlugin extends AutoPlugin {
6262
override def requires = JvmPlugin
6363
override def trigger: PluginTrigger = allRequirements
6464

65-
override def globalSettings: Seq[Def.Setting[_]] = Seq(
65+
override def globalSettings: Seq[Def.Setting[?]] = Seq(
6666

6767
jupiterVersion := readResourceProperty("jupiter-interface.properties", "version"),
6868
junitPlatformVersion := readResourceProperty("jupiter-interface.properties", "junit.platform.version"),
6969
junitJupiterVersion := readResourceProperty("jupiter-interface.properties", "junit.jupiter.version"),
7070
junitVintageVersion := readResourceProperty("jupiter-interface.properties", "junit.vintage.version")
7171
)
7272

73-
override def projectSettings: Seq[Def.Setting[_]] = inConfig(Test)(scopedSettings) ++ unscopedSettings
73+
override def projectSettings: Seq[Def.Setting[?]] = inConfig(Test)(scopedSettings) ++ unscopedSettings
7474

7575
/**
7676
* Configuration scope specific plugin settings.
@@ -79,7 +79,7 @@ object JupiterPlugin extends AutoPlugin {
7979
*
8080
* By default this is applied to the Test configuration only.
8181
*/
82-
def scopedSettings: Seq[Def.Setting[_]] = Seq(
82+
def scopedSettings: Seq[Def.Setting[?]] = Seq(
8383
definedTests ++= collectTests.value
8484
)
8585

0 commit comments

Comments
 (0)