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

org.jetbrains.kotlin.gradle.utils.projectExtensions.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.utils

import org.gradle.api.Project
import org.jetbrains.kotlin.commonizer.KonanDistribution
import org.jetbrains.kotlin.compilerRunner.konanHome
import org.jetbrains.kotlin.gradle.plugin.internal.BasePluginConfiguration
import org.jetbrains.kotlin.gradle.plugin.variantImplementationFactory

/**
 * The base name to use for archive files.
 */
internal val Project.archivesName
    get() = variantImplementationFactory()
        .getInstance(this)
        .archivesName


/**
 * Returns the directory to generate JAR archives into.
 *
 * @return The directory. Never returns null.
 */
internal val Project.libsDirectory
    get() = variantImplementationFactory()
        .getInstance(this)
        .libsDirectory


/**
 * Returns the directory to generate TAR and ZIP archives into.
 *
 * @return The directory. Never returns null.
 */
internal val Project.distsDirectory
    get() = variantImplementationFactory()
        .getInstance(this)
        .distsDirectory

internal val Project.konanDistribution: KonanDistribution
    get() = KonanDistribution(project.file(konanHome))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy