Add test engines as surefire plugin dependencies

This removes junit-vintage-engine as a test dependency
as well as kotlintest-runner-junit5.
The engines are only needed during test execution, but should
not be available for test compilation.

For this to work, the latest surefire plugin is required.
This commit is contained in:
Andreas Dangel
2020-07-17 12:03:45 +02:00
parent 96998fffc2
commit 94afdb117d
30 changed files with 23 additions and 193 deletions

View File

@ -5,14 +5,14 @@
package net.sourceforge.pmd.lang.scala.ast
import io.kotlintest.should
import io.kotlintest.specs.FunSpec
import io.kotlintest.specs.AbstractFunSpec
import net.sourceforge.pmd.lang.LanguageRegistry
import net.sourceforge.pmd.lang.ast.Node
import net.sourceforge.pmd.lang.ast.test.matchNode
import net.sourceforge.pmd.lang.ast.test.shouldBe
import java.io.StringReader
class ScalaTreeTests : FunSpec({
class ScalaTreeTests : AbstractFunSpec({
test("Test line/column numbers") {