commit | cb500bd719e123d7a0f23354515646e2d431076a | [log] [tgz] |
---|---|---|
author | Anton Lakotka <anton.lakotka@jetbrains.com> | Fri Sep 05 10:29:32 2025 +0200 |
committer | Anton Lakotka <anton.lakotka@jetbrains.com> | Fri Sep 05 10:29:32 2025 +0200 |
tree | f4b8ad1e6ddf3cbe8950ffe78b6e9182432bee90 | |
parent | 18433f787a42088539bdc4508a11e069c51093c2 [diff] |
[Gradle] Replace deprecated ARTIFACT_FORMAT attribute to correct artifactTypeDefinition Because this is not supported by Gradle 9.0
diff --git a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts index e52c3ae..8d154f0 100644 --- a/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts +++ b/libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/resources/testProject/consumableAppleFrameworks/consumer/build.gradle.kts
@@ -31,7 +31,7 @@ isCanBeResolved = true attributes { attribute(KotlinPlatformType.attribute, KotlinPlatformType.native) - attribute(ArtifactAttributes.ARTIFACT_FORMAT, FRAMEWORK) + attribute(ArtifactTypeDefinition.ARTIFACT_TYPE_ATTRIBUTE, FRAMEWORK) attribute(KotlinNativeTarget.kotlinNativeBuildTypeAttribute, request.buildType.name) attribute(Framework.frameworkTargets, request.targets.map { it.name }.toSet()) if (request.name != null) {