File tree 1 file changed +2
-1
lines changed
ideaSupport/src/main/scala/org/jetbrains/sbtidea
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,8 @@ trait Init { this: Keys.type =>
220
220
val fullClasspathValue = fullClasspath.in(Test ).value
221
221
val pathFinder = PathFinder .empty +++ // the new IJ plugin loading strategy in tests requires external plugins to be prepended to the classpath
222
222
packageOutputDir.value * globFilter(" *.jar" ) +++
223
- packageOutputDir.value / " lib" * globFilter(" *.jar" )
223
+ packageOutputDir.value / " lib" * globFilter(" *.jar" ) +++
224
+ packageOutputDir.value / " lib" / " modules" ** globFilter(" *.jar" )
224
225
val allExportedProducts = exportedProducts.all(ScopeFilter (inDependencies(ThisProject ), inConfigurations(Compile ))).value.flatten
225
226
pathFinder.classpath ++ (fullClasspathValue.to[mutable.LinkedHashSet ] -- allExportedProducts.toSet).toSeq // exclude classes already in the artifact
226
227
},
You can’t perform that action at this time.
0 commit comments