Apply default pluginManagement in settings for old test setup.

Cleanup non-required configuration in test projects settings.

^KT-45745 In Progress
This commit is contained in:
Yahor Berdnikau
2021-12-01 19:36:32 +01:00
committed by Space
parent 40489e9b8d
commit 782b4f64be
127 changed files with 20 additions and 1167 deletions
@@ -19,6 +19,7 @@ import org.jetbrains.kotlin.gradle.testbase.extractJavaCompiledSources
import org.jetbrains.kotlin.gradle.testbase.extractKotlinCompiledSources
import org.jetbrains.kotlin.gradle.testbase.prettyPrintXml
import org.jetbrains.kotlin.gradle.testbase.readAndCleanupTestResults
import org.jetbrains.kotlin.gradle.testbase.addPluginManagementToSettings
import org.jetbrains.kotlin.gradle.util.*
import org.jetbrains.kotlin.gradle.util.modify
import org.jetbrains.kotlin.test.RunnerWithMuteInDatabase
@@ -298,7 +299,10 @@ abstract class BaseGradleIT {
addHeapDumpOptionsToPropertiesFile()
}
if (enableCacheRedirector) projectDir.toPath().enableCacheRedirector()
projectDir.toPath().apply {
addPluginManagementToSettings()
if (enableCacheRedirector) enableCacheRedirector()
}
}
}
@@ -589,9 +589,6 @@ abstract class AbstractKotlin2JsGradlePluginIT(protected val irBackend: Boolean)
)
fun testNewKotlinJsPlugin(gradleVersion: GradleVersion) {
project("kotlin-js-plugin-project", gradleVersion) {
buildGradleKts.modify(::transformBuildScriptWithPluginsDsl)
settingsGradle.modify(::transformBuildScriptWithPluginsDsl)
build("publish", "runDceKotlin", "test", "runDceBenchmarkKotlin") {
assertTasksExecuted(
":compileKotlinJs", ":compileTestKotlinJs", ":compileBenchmarkKotlinJs",
@@ -24,6 +24,8 @@ internal val DEFAULT_GROOVY_SETTINGS_FILE =
id "org.jetbrains.kotlin.android" version "${'$'}kotlin_version"
id "org.jetbrains.kotlin.js" version "${'$'}kotlin_version"
id "org.jetbrains.kotlin.multiplatform" version "${'$'}kotlin_version"
id "org.jetbrains.kotlin.multiplatform.pm20" version "${'$'}kotlin_version"
id "org.jetbrains.kotlin.plugin.allopen" version "${'$'}kotlin_version"
id "org.jetbrains.kotlin.test.fixes.android" version "${'$'}kotlin_version"
}
@@ -44,6 +46,8 @@ internal val DEFAULT_GROOVY_SETTINGS_FILE =
case "kotlin-dce-js":
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version")
break
case "kotlin2js":
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version")
}
}
}
@@ -69,6 +73,8 @@ internal val DEFAULT_KOTLIN_SETTINGS_FILE =
id("org.jetbrains.kotlin.android") version kotlin_version
id("org.jetbrains.kotlin.js") version kotlin_version
id("org.jetbrains.kotlin.multiplatform") version kotlin_version
id("org.jetbrains.kotlin.multiplatform.pm20") version kotlin_version
id("org.jetbrains.kotlin.plugin.allopen") version kotlin_version
id("org.jetbrains.kotlin.test.fixes.android") version kotlin_version
}
@@ -84,7 +90,8 @@ internal val DEFAULT_KOTLIN_SETTINGS_FILE =
"com.android.lint",
"com.android.instantapp",
"com.android.feature" -> useModule("com.android.tools.build:gradle:${'$'}android_tools_version")
"kotlin-dce-js" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version")
"kotlin-dce-js" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version")
"kotlin2js" -> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${'$'}kotlin_version")
}
}
}
@@ -1,24 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
google()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
id "org.jetbrains.kotlin.android" version "$kotlin_version"
}
resolutionStrategy {
eachPlugin {
if (requested.id.id.startsWith("com.android.")) {
useModule("com.android.tools.build:gradle:$android_tools_version")
}
}
}
}
include ':Android', ':Lib', ':Test'
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,13 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
mavenCentral()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":shared")
include(":shared")
@@ -1,11 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
}
}
@@ -1,11 +1 @@
rootProject.name = "sample-app"
enableFeaturePreview("GRADLE_METADATA")
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,11 +1 @@
rootProject.name = "sample-lib"
enableFeaturePreview("GRADLE_METADATA")
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,15 +1,3 @@
pluginManagement {
val kotlin_version: String? by settings
repositories {
mavenLocal()
gradlePluginPortal()
}
plugins {
kotlin("multiplatform") version (kotlin_version ?: "1.6.255-SNAPSHOT")
}
}
rootProject.name = "kotlin-multiplatform-projects"
include(":p1")
include(":p2")
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
include(":p1")
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
include(":p1")
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
include(":p1")
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,14 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p0")
include(":p1")
include(":p2")
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
@@ -1,14 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
include(":p2")
include(":p3")
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,13 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,6 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
rootProject.name = "my-lib-foo"
@@ -1,12 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
rootProject.name = "my-lib-foo"
@@ -1,9 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = 'multimod-hmpp'
include ':top-mpp', ':bottom-mpp', ':mpp-additional', ':api-jvm', ':plain-jvm'
@@ -1,12 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "mpp-granular-metadata-demo"
include("my-lib-foo", "my-lib-bar", "my-app")
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "my-app"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "my-lib-bar"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "my-lib-foo"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "third-party-lib"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,12 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "hierarchical-mpp-with-js"
include("my-lib-foo", "my-app")
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "my-lib-foo"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "third-party-lib"
enableFeaturePreview("GRADLE_METADATA")
@@ -6,4 +6,4 @@ dependencyResolutionManagement {
}
}
include ':main-project', ':lib-project'
include ':main-project', ':lib-project'
@@ -1,8 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
includeBuild("lib")
@@ -1,11 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id("org.jetbrains.kotlin.multiplatform") version "${extra["kotlin_version"]}"
}
}
@@ -1,8 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "js-library"
@@ -1,8 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "js-library"
@@ -1,10 +1 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "third-party-lib"
enableFeaturePreview("GRADLE_METADATA")
@@ -1,12 +0,0 @@
pluginManagement {
// Required for KaptModeIT. Remove it once these tests will be migrated.
repositories {
mavenLocal()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
}
}
@@ -1,12 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
}
}
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
}
plugins {
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
}
}
@@ -1,10 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "kotlin-js-browser"
include("base")
@@ -1,5 +1,5 @@
plugins {
kotlin("js").version("<pluginMarkerVersion>")
kotlin("js")
id("kotlin-dce-js")
`maven-publish`
}
@@ -1,15 +1 @@
pluginManagement {
resolutionStrategy {
eachPlugin{
if (requested.id.id == "kotlin-dce-js") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:<pluginMarkerVersion>")
}
}
}
repositories {
mavenLocal()
gradlePluginPortal()
}
}
rootProject.name = "kotlin-js-plugin"
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,7 +0,0 @@
pluginManagement {
repositories {
mavenCentral()
mavenLocal()
}
}
@@ -1,15 +0,0 @@
// Required to be here until all tests using this project will migrate
// to new DSL
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlin.plugin.allopen" version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
}
}
@@ -1,23 +1 @@
pluginManagement {
repositories {
mavenLocal()
google()
gradlePluginPortal()
}
val kotlin_version: String by settings
val android_tools_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
kotlin("android").version(kotlin_version)
}
resolutionStrategy {
eachPlugin {
if (requested.id.id.startsWith("com.android")) {
useModule("com.android.tools.build:gradle:$android_tools_version")
}
}
}
}
rootProject.name = "project"
@@ -1,13 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
}
plugins {
val kotlin_version: String by settings
kotlin("multiplatform.pm20").version(kotlin_version)
}
}
rootProject.name = "kpmTransientPluginOptions"
@@ -1,18 +1 @@
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin2js") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
}
}
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
include(":mpp-lib", ":jvm-app", ":js-app")
include(":mpp-lib", ":jvm-app", ":js-app")
@@ -1,3 +1 @@
enableFeaturePreview('GRADLE_METADATA')
include(":mpp-lib", ":jvm-app")
@@ -1,14 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
include(":p1")
include(":p2")
@@ -1,10 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
}
val kotlin_version: String by settings
plugins {
kotlin("multiplatform").version(kotlin_version)
}
}
@@ -1,32 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
google()
gradlePluginPortal()
}
plugins {
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
id "org.jetbrains.kotlin.kapt" version "$kotlin_version"
id "org.jetbrains.kotlin.android" version "$kotlin_version"
id "org.jetbrains.kotlin.js" version "$kotlin_version"
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version"
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.android.application" ||
requested.id.id == "com.android.library" ||
requested.id.id == "com.android.test" ||
requested.id.id == "com.android.dynamic-feature" ||
requested.id.id == "com.android.asset-pack" ||
requested.id.id == "com.android.asset-pack-bundle" ||
requested.id.id == "com.android.lint" ||
requested.id.id == "com.android.instantapp" ||
requested.id.id == "com.android.feature") {
useModule("com.android.tools.build:gradle:$android_tools_version")
}
}
}
}
@@ -1,12 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("GRADLE_METADATA")
include(":app")
include(":lib")
@@ -1,12 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("GRADLE_METADATA")
include(":app")
include(":lib")
@@ -1,12 +1,2 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview("GRADLE_METADATA")
include(":app")
include(":lib")
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-binary"
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-framework"
include ':exported'
@@ -1,5 +1,3 @@
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-binary"
include ':exported'
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-binary"
include ':exported'
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-library"
include ':exported'
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-cinterop"
include 'projectLibrary'
@@ -1,9 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "cocoapods"
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
// We move the actual library in a subproject to test accessing gradle wrapper from Xcode.
rootProject.name = "cocoapods"
include 'kotlin-library'
@@ -1,13 +1,3 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
// We move the actual library in a subproject to test accessing gradle wrapper from Xcode.
rootProject.name = "cocoapods"
include 'kotlin-library'
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "cocoapods"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "cocoapods"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "cocoapods"
@@ -1,11 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
plugins {
id("org.jetbrains.kotlin.multiplatform") version "${extra["kotlin_version"]}"
}
}
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-endorsed"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-endorsed"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-external-dependencies"
@@ -1,7 +0,0 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "app"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "liba"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "liba"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "libb"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "native-ir-linker-issues-ktor-and-coroutines"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "app"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "liba"
@@ -1,11 +1 @@
pluginManagement {
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}
enableFeaturePreview('GRADLE_METADATA')
rootProject.name = "liba"

Some files were not shown because too many files have changed in this diff Show More