src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformDependenciesExtension.kt [697:718]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - version: String, useInstaller: Boolean, productMode: ProductMode = ProductMode.MONOLITH, ) = create(type, version) { this.useInstaller = useInstaller this.productMode = productMode } /** * Adds a dependency on the IntelliJ Platform. * * @param type The provider for the type of the IntelliJ Platform dependency. Accepts either [IntelliJPlatformType] or [String]. * @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 create( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - src/main/kotlin/org/jetbrains/intellij/platform/gradle/extensions/IntelliJPlatformDependenciesExtension.kt [720:741]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - version: String, useInstaller: Boolean, productMode: ProductMode = ProductMode.MONOLITH, ) = create(type, version) { this.useInstaller = useInstaller this.productMode = productMode } /** * Adds a dependency on the IntelliJ Platform. * * @param type The type of 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 create( - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -