src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformExtension.kt [1007:1028]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - version: String, useInstaller: Boolean = true, productMode: ProductMode = ProductMode.MONOLITH, ) = create(type, version) { this.useInstaller = useInstaller this.productMode = productMode } /** * Adds a dependency to a binary IDE release to be used for testing with the IntelliJ Plugin Verifier. * * @param type The IntelliJ Platform dependency. * @param version The version of the IntelliJ Platform dependency. * @param useInstaller Switches between the IDE installer and archive from the IntelliJ Maven repository. * @param productMode Describes a mode in which a product may be started. */ @JvmOverloads @Deprecated( message = "Please use the create(type, version, configure) method with a configuration lambda instead.", replaceWith = ReplaceWith("create(type, version) { this.useInstaller = useInstaller }"), ) fun ide( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformExtension.kt [1030:1051]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - version: String, useInstaller: Boolean = true, productMode: ProductMode = ProductMode.MONOLITH, ) = create(type, version) { this.useInstaller = useInstaller this.productMode = productMode } /** * Adds a dependency to a binary IDE release to be used for testing with the IntelliJ Plugin Verifier. * * @param type The provider for the type of the IntelliJ Platform dependency. Accepts either [IntelliJPlatformType] or [String]. * @param version The provider for the version of the IntelliJ Platform dependency. * @param useInstaller Switches between the IDE installer and archive from the IntelliJ Maven repository. * @param productMode Describes a mode in which a product may be started. */ @JvmOverloads @Deprecated( message = "Please use the create(type, version, configure) method with a configuration lambda instead.", replaceWith = ReplaceWith("create(type, version) { this.useInstaller = useInstaller }"), ) fun ide( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -