• Home
  • Raw
  • Download

Lines Matching full:project

3 import org.gradle.api.Project
23 * 1. the Kotlin community project Gradle plugin,
28 fun getCustomKotlinRepositoryURL(project: Project): String? { in getCustomKotlinRepositoryURL()
29 …val communityPluginKotlinRepoURL = project.findProperty("community.project.kotlin.repo") as? String in getCustomKotlinRepositoryURL()
30 val gradlePropertyKotlinRepoURL = project.findProperty("kotlin_repo_url") as? String in getCustomKotlinRepositoryURL()
36 LOGGER.info("A custom Kotlin repository $kotlinRepoURL was found for project ${project.name}") in getCustomKotlinRepositoryURL()
46 fun addCustomKotlinRepositoryIfEnabled(repositoryHandler: RepositoryHandler, project: Project) { in addCustomKotlinRepositoryIfEnabled()
47 val kotlinRepoURL = getCustomKotlinRepositoryURL(project) ?: return in addCustomKotlinRepositoryIfEnabled()
55 * @return a Kotlin version taken from the Kotlin community project Gradle plugin,
58 fun getOverridingKotlinVersion(project: Project): String? { in getOverridingKotlinVersion()
59 …val communityPluginKotlinVersion = project.findProperty("community.project.kotlin.version") as? St… in getOverridingKotlinVersion()
66 …LOGGER.info("An overriding Kotlin version of $kotlinVersion was found for project ${project.name}") in getOverridingKotlinVersion()
75 * 1. the Kotlin community project Gradle plugin,
80 fun getOverridingKotlinLanguageVersion(project: Project): String? { in getOverridingKotlinLanguageVersion()
81 …val communityPluginLanguageVersion = project.findProperty("community.project.kotlin.languageVersio… in getOverridingKotlinLanguageVersion()
82 val gradlePropertyLanguageVersion = project.findProperty("kotlin_language_version") as? String in getOverridingKotlinLanguageVersion()
88 …("An overriding Kotlin language version of $languageVersion was found for project ${project.name}") in getOverridingKotlinLanguageVersion()
97 * 1. the Kotlin community project Gradle plugin,
102 fun getOverridingKotlinApiVersion(project: Project): String? { in getOverridingKotlinApiVersion()
103 …val communityPluginApiVersion = project.findProperty("community.project.kotlin.apiVersion") as? St… in getOverridingKotlinApiVersion()
104 val gradlePropertyApiVersion = project.findProperty("kotlin_api_version") as? String in getOverridingKotlinApiVersion()
110 …LOGGER.info("An overriding Kotlin api version of $apiVersion was found for project ${project.name}… in getOverridingKotlinApiVersion()