Update prerequisites.md

Making directory structure demo clear if using linux `tree` style
This commit is contained in:
Henry Zhu 2019-10-02 19:54:44 +08:00 committed by GitHub
parent b751c0170d
commit e0471d266f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,24 +68,24 @@ For the [example](#creating-a-gradle-based-intellij-platform-plugin-with-new-pro
* 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](/basics/plugin_structure/plugin_configuration_file.md).
```text
my_gradle_plugin/
build.gradle
gradle/
wrapper/
gradle-wrapper.jar
gradle-wrapper.properties
gradlew
gradlew.bat
settings.gradle
src/
main
java/
resources/
META-INF/
plugin.xml
test
java/
resources/
quit-prompt
├── build.gradle
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── settings.gradle
└── src
├── main
│   ├── java
│   └── resources
│   └── META-INF
│   └── plugin.xml
└── test
├── java
└── resources
```
The New Project Wizard produces the `my_gradle_plugin` project `build.gradle` file shown below: