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

Commit 6005ad7

Browse files
committed
Update the path for test resources to come first to have parity with how SBT resolves resources
1 parent 27d8cdc commit 6005ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scala/com/tapad/docker/DockerComposeSettings.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ trait DockerComposeSettingsLocal extends PrintFormatting {
4242
val classpathTestManaged = (managedClasspath in Test).value
4343
val classpathTestUnmanaged = (unmanagedClasspath in Test).value
4444
val testResources = (resources in Test).value
45-
(fullClasspathCompile.files ++ classpathTestManaged.files ++ classpathTestUnmanaged.files ++ testResources).map(_.getAbsoluteFile).mkString(File.pathSeparator)
45+
(testResources ++ fullClasspathCompile.files ++ classpathTestManaged.files ++ classpathTestUnmanaged.files).map(_.getAbsoluteFile).mkString(File.pathSeparator)
4646
},
4747
testCasesJar := artifactPath.in(Test, packageBin).value.getAbsolutePath,
4848
testCasesPackageTask := (sbt.Keys.packageBin in Test).value,

0 commit comments

Comments
 (0)