README update

This commit is contained in:
Jakub Chrzanowski 2020-06-22 13:07:48 +02:00
parent 30bc76c93a
commit 062cb65722
2 changed files with 7 additions and 20 deletions

View File

@ -70,18 +70,6 @@ The most significant parts of the current configuration are:
Project-specific configuration file - [gradle.properties][file:gradle.properties] - contains: Project-specific configuration file - [gradle.properties][file:gradle.properties] - contains:
```properties
pluginGroup = org.jetbrains.plugins.template
pluginName = Template
pluginVersion = 0.0.1
pluginSinceBuild = 193
pluginUntilBuild = 202
platformType = IC
platformVersion = 2020.1
platformDownloadSources = true
```
| Property name | Description | | Property name | Description |
| ------------------------- | ------------------------------------------------------------------------------------- | | ------------------------- | ------------------------------------------------------------------------------------- |
| `pluginGroup` | Package name - after *using* the template, will be set to `com.gtihub.username.repo`. | | `pluginGroup` | Package name - after *using* the template, will be set to `com.gtihub.username.repo`. |
@ -105,19 +93,19 @@ Generated IntelliJ Template repository contains the following content structure:
├── CHANGELOG.md Full changes history. ├── CHANGELOG.md Full changes history.
├── LICENSE License, MIT by default ├── LICENSE License, MIT by default
├── README.md README ├── README.md README
├── build Output build directory ├── build/ Output build directory
├── build.gradle.kts Gradle configuration ├── build.gradle.kts Gradle configuration
├── detekt-config.yml Detekt configuration ├── detekt-config.yml Detekt configuration
├── gradle ├── gradle
│   └── wrapper Gradle Wrapper │   └── wrapper/ Gradle Wrapper
├── gradle.properties Gradle configuration properties ├── gradle.properties Gradle configuration properties
├── gradlew *nix Gradle Wrapper binary ├── gradlew *nix Gradle Wrapper binary
├── gradlew.bat Windows Gradle Wrapper binary ├── gradlew.bat Windows Gradle Wrapper binary
└── src Plugin sources └── src Plugin sources
└── main └── main
├── kotlin Kotlin source files ├── kotlin/ Kotlin source files
├── java Java source files ├── java/ Java source files
└── resources Resources - plugin.xml, icons, messages └── resources/ Resources - plugin.xml, icons, messages
``` ```
Beside of the configuration files, the most important part is the `src` directory containing our implementation Beside of the configuration files, the most important part is the `src` directory containing our implementation

View File

@ -1,6 +1,5 @@
# Available idea versions: # IntelliJ Platform Artifacts Repositories
# https://www.jetbrains.com/intellij-repository/releases # -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
# https://www.jetbrains.com/intellij-repository/snapshots
pluginGroup = org.jetbrains.plugins.template pluginGroup = org.jetbrains.plugins.template
pluginName = Template pluginName = Template