mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 10:17:50 +08:00
Update prerequisites.md
Making directory structure demo clear if using linux `tree` style
This commit is contained in:
parent
b751c0170d
commit
e0471d266f
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user