src/integrationTest/resources/dependency-locking-and-verification/build.gradle.kts [4:33]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") version = "1.0.0" plugins { id("org.jetbrains.kotlin.jvm") id("org.jetbrains.intellij.platform") } kotlin { jvmToolchain(17) } // Disable dependency verification for these configuration if signature verification is being used (pgp option), // because they break Gradle's logic for signature generation with a very obscure error: "Invalid UTF-8 input". // There seems to be a few bugs in Gradle related to this error and also for generating a signature for JDK. // https://github.com/gradle/gradle/issues?q=%22Invalid+UTF-8+input%22 // https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1779#issuecomment-2384461002 configurations { listOf( "compileClasspath", "compileOnlyDependenciesMetadata", "intellijPlatformClasspath", "intellijPlatformDependency", "intellijPlatformDependencyArchive", "testCompileOnlyDependenciesMetadata", ).forEach { named(it) { resolutionStrategy.disableDependencyVerification() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/integrationTest/resources/dependency-verification-ignore-intellij/build.gradle.kts [4:33]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - val intellijPlatformTypeProperty = providers.gradleProperty("intellijPlatform.type") val intellijPlatformVersionProperty = providers.gradleProperty("intellijPlatform.version") version = "1.0.0" plugins { id("org.jetbrains.kotlin.jvm") id("org.jetbrains.intellij.platform") } kotlin { jvmToolchain(17) } // Disable dependency verification for these configuration if signature verification is being used (pgp option), // because they break Gradle's logic for signature generation with a very obscure error: "Invalid UTF-8 input". // There seems to be a few bugs in Gradle related to this error and also for generating a signature for JDK. // https://github.com/gradle/gradle/issues?q=%22Invalid+UTF-8+input%22 // https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1779#issuecomment-2384461002 configurations { listOf( "compileClasspath", "compileOnlyDependenciesMetadata", "intellijPlatformClasspath", "intellijPlatformDependency", "intellijPlatformDependencyArchive", "testCompileOnlyDependenciesMetadata", ).forEach { named(it) { resolutionStrategy.disableDependencyVerification() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -