From ef6c2f73b35b0153dd9c9ae302fa97c79d7854a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Tue, 12 Apr 2022 15:16:14 +0200 Subject: [PATCH] dev_alternate_products.md: cleanup --- topics/products/dev_alternate_products.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topics/products/dev_alternate_products.md b/topics/products/dev_alternate_products.md index 6a48b7ce5..109c7ef1b 100644 --- a/topics/products/dev_alternate_products.md +++ b/topics/products/dev_alternate_products.md @@ -56,8 +56,8 @@ No additional product-specific configuration needs to be set in the Gradle build ```kotlin intellij { - version.set("2019.2.3") type.set("PY") + version.set("2019.2.3") } ``` @@ -66,8 +66,8 @@ intellij { ```groovy intellij { - version = '2019.2.3' type = 'PY' + version = '2019.2.3' } ``` @@ -139,11 +139,11 @@ This snippet is an example for configuring the Setup and Running DSLs in a Gradl ```kotlin intellij { // Define IntelliJ Platform against which to build the plugin project. + type.set("IU") // Use the IntelliJ Platform BRANCH.BUILD version matching // "targetIDE" (PhpStorm): version.set("192.7142.36") // baseIntelliJPlatformVersion - type.set("IU") // Require the targetIDE plugin or library. Use the stable version // compatible with intellij.version and intellij.type specified above: @@ -163,11 +163,11 @@ runIde { ```groovy intellij { // Define IntelliJ Platform against which to build the plugin project. + type = 'IU' // Use the IntelliJ Platform BRANCH.BUILD version matching // "targetIDE" (PhpStorm): version = '192.7142.36' // baseIntelliJPlatformVersion - type = 'IU' // Require the targetIDE plugin or library. Use the stable version // compatible with intellij.version and intellij.type specified above: