@@ -4,17 +4,15 @@ description = "Allure ScalaTest Integration"
44
55apply (plugin = " scala" )
66
7- val availableScalaVersions = listOf (" 2.11" , " 2.12" , " 2.13" )
8- val defaultScala211Version = " 2.11.12"
9- val defaultScala212Version = " 2.12.8"
10- val defaultScala213Version = " 2.13.1"
7+ val availableScalaVersions = listOf (" 2.12" , " 2.13" )
8+ val defaultScala212Version = " 2.12.19"
9+ val defaultScala213Version = " 2.13.14"
1110
1211var selectedScalaVersion = defaultScala213Version
1312
1413if (hasProperty(" scalaVersion" )) {
1514 val scalaVersion: String by project
1615 selectedScalaVersion = when (scalaVersion) {
17- " 2.11" -> defaultScala211Version
1816 " 2.12" -> defaultScala212Version
1917 " 2.13" -> defaultScala213Version
2018 else -> scalaVersion
@@ -80,8 +78,8 @@ val installAll by tasks.creating {
8078
8179dependencies {
8280 api(project(" :allure-java-commons" ))
83- implementation(" org.scalatest:scalatest_$baseScalaVersion :3.1.1 " )
84- implementation(" org.scala-lang.modules:scala-collection-compat_$baseScalaVersion :2.1.4 " )
81+ implementation(" org.scalatest:scalatest_$baseScalaVersion :3.2.19 " )
82+ implementation(" org.scala-lang.modules:scala-collection-compat_$baseScalaVersion :2.12.0 " )
8583 testAnnotationProcessor(project(" :allure-descriptions-javadoc" ))
8684 testImplementation(" io.github.glytching:junit-extensions" )
8785 testImplementation(" org.assertj:assertj-core" )
0 commit comments