All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.gradle.targets.CreateDefaultCompilationsSideEffect.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-RC
Show newest version
/*
 * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
 * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
 */

package org.jetbrains.kotlin.gradle.targets

import org.jetbrains.kotlin.gradle.plugin.*
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinMetadataTarget
import org.jetbrains.kotlin.gradle.targets.js.ir.KotlinJsIrTarget

internal val CreateDefaultCompilationsSideEffect = KotlinTargetSideEffect { target ->
    val main = target.compilations.create(KotlinCompilation.MAIN_COMPILATION_NAME)

    /* Create test compilation by default, except for metadata targets, obviously */
    if (target !is KotlinMetadataTarget) {
        target.compilations.create(KotlinCompilation.TEST_COMPILATION_NAME).apply {
            associateWith(main)

            @Suppress("TYPEALIAS_EXPANSION_DEPRECATION")
            if (this is DeprecatedKotlinCompilationToRunnableFiles && this !is KotlinJsIrTarget) {
                // TODO: fix inconsistency? KT-27272
                runtimeDependencyFiles += project.files(output.allOutputs)
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy