diff --git a/topics/tutorials/build_system/gradle_prerequisites.md b/topics/tutorials/build_system/gradle_prerequisites.md
index d6aed7a73..b100660c1 100644
--- a/topics/tutorials/build_system/gradle_prerequisites.md
+++ b/topics/tutorials/build_system/gradle_prerequisites.md
@@ -1,6 +1,6 @@
[//]: # (title: Getting Started with Gradle)
-
+
Gradle is the preferred solution for creating IntelliJ Platform plugins.
The IntelliJ IDEA Ultimate and Community editions bundle the necessary plugins to support Gradle-based development.
@@ -96,7 +96,12 @@ my_gradle_plugin
If needed, the IntelliJ IDEA Gradle plugin downloads the version of Gradle specified in this file.
* The settings.gradle file, containing a definition of the `rootProject.name`.
* The META-INF directory under the default `main` [SourceSet](https://docs.gradle.org/current/userguide/java_plugin.html#sec:java_project_layout) contains the plugin [configuration file](plugin_configuration_file.md).
-
+
+ > Please note: the generated build.gradle file needs to be adjusted as shown below, as IntelliJ IDEA currently generates template incompatible with gradle-intellij-plugin 1.0 release.
+ > See [Upgrade Instructions](https://lp.jetbrains.com/gradle-intellij-plugin/) for more details.
+ >
+ {type="warning"}
+
The generated `my_gradle_plugin` project build.gradle file:
```groovy