1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00

Reformat.

This commit is contained in:
Cedric Beust 2016-02-02 02:57:49 +04:00
parent f39c3ce514
commit 5027a92087

View file

@ -238,10 +238,8 @@ abstract class JvmCompilerPlugin @Inject constructor(
CompilerActionInfo { CompilerActionInfo {
copyResources(project, JvmCompilerPlugin.SOURCE_SET_MAIN) copyResources(project, JvmCompilerPlugin.SOURCE_SET_MAIN)
val fullClasspath = if (isTest) val fullClasspath = if (isTest) dependencyManager.testDependencies(project, context)
dependencyManager.testDependencies(project, context) else dependencyManager.dependencies(project, context)
else
dependencyManager.dependencies(project, context)
// Remove all the excluded dependencies from the classpath // Remove all the excluded dependencies from the classpath
val classpath = fullClasspath.filter { val classpath = fullClasspath.filter {