Skip to content

Commit

Permalink
Scatatest version cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzBuehmann committed Feb 24, 2021
1 parent dcafe85 commit a89c3d8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
22 changes: 13 additions & 9 deletions pom.xml
Expand Up @@ -1108,10 +1108,20 @@
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.binary.version}</artifactId>
<version>3.1.0</version>
<scope>test</scope>
<version>3.1.4</version>
</dependency>
<!-- <dependency>-->
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-12_${scala.binary.version}</artifactId>
<version>3.1.4.0</version>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-all</artifactId>
<version>0.36.8</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.scalatest</groupId>-->
<!-- <artifactId>scalatest-funsuite_${scala.binary.version}</artifactId>-->
<!-- <version>3.2.5</version>-->
Expand All @@ -1130,12 +1140,6 @@
<!-- <scope>test</scope>-->
<!-- </dependency>-->

<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-12_${scala.binary.version}</artifactId>
<version>3.2.0.0</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.specs2</groupId>
Expand Down
5 changes: 4 additions & 1 deletion sansa-inference/sansa-inference-tests/pom.xml
Expand Up @@ -55,7 +55,10 @@
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.binary.version}</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>junit-4-12_${scala.binary.version}</artifactId>
</dependency>

<dependency>
Expand Down
Expand Up @@ -8,7 +8,7 @@ import com.typesafe.scalalogging.LazyLogging
import org.apache.jena.rdf.model.Model
import org.apache.jena.shared.PrefixMapping
import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner
import org.scalatestplus.junit.JUnitRunner
import org.scalatest.{BeforeAndAfterAll, FlatSpec}

import net.sansa_stack.inference.data.{RDF, RDFOps}
Expand Down
Expand Up @@ -2,7 +2,7 @@ package net.sansa_stack.inference.test.conformance

import net.sansa_stack.inference.data.{RDF, RDFOps}
import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner
import org.scalatestplus.junit.JUnitRunner

/**
* The class is to test the conformance of each materialization rule of OWL Horst entailment.
Expand Down
Expand Up @@ -2,7 +2,7 @@ package net.sansa_stack.inference.test.conformance

import net.sansa_stack.inference.data.{RDF, RDFOps}
import org.junit.runner.RunWith
import org.scalatest.junit.JUnitRunner
import org.scalatestplus.junit.JUnitRunner


/**
Expand Down

0 comments on commit a89c3d8

Please sign in to comment.