1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2016-06-08 20:22:37 -08:00
parent ef7c3cd92c
commit 25629e4cf7
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ class CompilerUtils @Inject constructor(val files: KFiles,
* Copy the resources from a source directory to the build one
*/
private fun copyResources(project: Project, context: KobaltContext, sourceSet: SourceSet) {
var outputDir = sourceSet.outputDir
val outputDir = sourceSet.outputDir
val variantSourceDirs = context.variant.resourceDirectories(project, sourceSet)
if (variantSourceDirs.size > 0) {

View file

@ -180,7 +180,7 @@ open class JvmCompilerPlugin @Inject constructor(
// If this project has a kapt{} directive, we want to run the Java compiler first
val hasKapt = project.projectProperties.get("kaptConfig") != null
var finalAllCompilers = if (hasKapt) swapJavaAndKotlin(allCompilers) else allCompilers
val finalAllCompilers = if (hasKapt) swapJavaAndKotlin(allCompilers) else allCompilers
finalAllCompilers.forEach { compiler ->
val compilerResults = compilerUtils.invokeCompiler(project, context, compiler,
sourceDirectories(project, context), isTest)