Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Update the path for test resources to come first to have parity with …
Browse files Browse the repository at this point in the history
…how SBT resolves resources
  • Loading branch information
kurtkopchik committed Jul 25, 2017
1 parent 27d8cdc commit 6005ad7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ trait DockerComposeSettingsLocal extends PrintFormatting {
val classpathTestManaged = (managedClasspath in Test).value
val classpathTestUnmanaged = (unmanagedClasspath in Test).value
val testResources = (resources in Test).value
(fullClasspathCompile.files ++ classpathTestManaged.files ++ classpathTestUnmanaged.files ++ testResources).map(_.getAbsoluteFile).mkString(File.pathSeparator)
(testResources ++ fullClasspathCompile.files ++ classpathTestManaged.files ++ classpathTestUnmanaged.files).map(_.getAbsoluteFile).mkString(File.pathSeparator)
},
testCasesJar := artifactPath.in(Test, packageBin).value.getAbsolutePath,
testCasesPackageTask := (sbt.Keys.packageBin in Test).value,
Expand Down

0 comments on commit 6005ad7

Please sign in to comment.