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

com.freeletics.gradle.monorepo.setup.LicenseeSetup.kt Maven / Gradle / Ivy

package com.freeletics.gradle.monorepo.setup

import app.cash.licensee.LicenseeExtension
import com.freeletics.gradle.monorepo.tasks.UpdateLicensesTask.Companion.registerUpdateLicensesTask
import org.gradle.api.Project

internal fun Project.configureLicensee() {
    plugins.apply("app.cash.licensee")

    registerUpdateLicensesTask()

    extensions.configure(LicenseeExtension::class.java) {
        it.allow("Apache-2.0")
        it.allow("MIT")
        it.allow("MIT-0")
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy