dev_alternate_products.md: cleanup

This commit is contained in:
Yann Cébron 2022-04-12 15:16:14 +02:00
parent 1723699720
commit ef6c2f73b3

View File

@ -56,8 +56,8 @@ No additional product-specific configuration needs to be set in the Gradle build
```kotlin ```kotlin
intellij { intellij {
version.set("2019.2.3")
type.set("PY") type.set("PY")
version.set("2019.2.3")
} }
``` ```
@ -66,8 +66,8 @@ intellij {
```groovy ```groovy
intellij { intellij {
version = '2019.2.3'
type = 'PY' 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 ```kotlin
intellij { intellij {
// Define IntelliJ Platform against which to build the plugin project. // Define IntelliJ Platform against which to build the plugin project.
type.set("IU")
// Use the IntelliJ Platform BRANCH.BUILD version matching // Use the IntelliJ Platform BRANCH.BUILD version matching
// "targetIDE" (PhpStorm): // "targetIDE" (PhpStorm):
version.set("192.7142.36") // baseIntelliJPlatformVersion version.set("192.7142.36") // baseIntelliJPlatformVersion
type.set("IU")
// Require the targetIDE plugin or library. Use the stable version // Require the targetIDE plugin or library. Use the stable version
// compatible with intellij.version and intellij.type specified above: // compatible with intellij.version and intellij.type specified above:
@ -163,11 +163,11 @@ runIde {
```groovy ```groovy
intellij { intellij {
// Define IntelliJ Platform against which to build the plugin project. // Define IntelliJ Platform against which to build the plugin project.
type = 'IU'
// Use the IntelliJ Platform BRANCH.BUILD version matching // Use the IntelliJ Platform BRANCH.BUILD version matching
// "targetIDE" (PhpStorm): // "targetIDE" (PhpStorm):
version = '192.7142.36' // baseIntelliJPlatformVersion version = '192.7142.36' // baseIntelliJPlatformVersion
type = 'IU'
// Require the targetIDE plugin or library. Use the stable version // Require the targetIDE plugin or library. Use the stable version
// compatible with intellij.version and intellij.type specified above: // compatible with intellij.version and intellij.type specified above: