mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 16:28:12 -07:00
Build into test-classes dir.
This commit is contained in:
parent
d8e893be9e
commit
c8d6ab9af0
1 changed files with 3 additions and 2 deletions
|
@ -179,7 +179,8 @@ abstract class JvmCompilerPlugin @Inject constructor(
|
||||||
dependencyManager.dependencies(project, context, projects)
|
dependencyManager.dependencies(project, context, projects)
|
||||||
|
|
||||||
val projectDirectory = File(project.directory)
|
val projectDirectory = File(project.directory)
|
||||||
val buildDirectory = File(project.classesDir(context))
|
val buildDirectory = if (isTest) KFiles.makeOutputTestDir(project)
|
||||||
|
else File(project.classesDir(context))
|
||||||
buildDirectory.mkdirs()
|
buildDirectory.mkdirs()
|
||||||
|
|
||||||
val initialSourceDirectories = arrayListOf<File>()
|
val initialSourceDirectories = arrayListOf<File>()
|
||||||
|
@ -199,7 +200,7 @@ abstract class JvmCompilerPlugin @Inject constructor(
|
||||||
context.pluginInfo.sourceDirectoriesInterceptors.fold(initialSourceDirectories.toList(),
|
context.pluginInfo.sourceDirectoriesInterceptors.fold(initialSourceDirectories.toList(),
|
||||||
{ sd, interceptor -> interceptor.intercept(project, context, sd) })
|
{ sd, interceptor -> interceptor.intercept(project, context, sd) })
|
||||||
}.filter {
|
}.filter {
|
||||||
it.exists()
|
File(project.directory, it.path).exists()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now that we have the final list of source dirs, find source files in them
|
// Now that we have the final list of source dirs, find source files in them
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue