Skip to content

Commit 87095df

Browse files
committed
Fix issue with classpath ordering of partest dependencies.
1 parent 2777168 commit 87095df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/ScalaModulePlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ object ScalaModulePlugin extends Plugin {
7171
// so that it can link to the compiler/lib we're using (testing)
7272
libraryDependencies ++= (
7373
if (includeTestDependencies.value)
74-
Seq("org.scala-lang.modules" %% "scala-partest" % partestVersion.value % "test",
75-
"org.scala-lang.modules" %% "scala-partest-interface" % "0.2" % "test")
74+
Seq("org.scala-lang.modules" %% "scala-partest-interface" % "0.2" % "test",
75+
"org.scala-lang.modules" %% "scala-partest" % partestVersion.value % "test")
7676
else Seq.empty
7777
),
7878
// necessary for partest -- see comments in its build.sbt

0 commit comments

Comments
 (0)