From 062cb65722353730e52821642cce4ecf533704b5 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 22 Jun 2020 13:07:48 +0200 Subject: [PATCH] README update --- README.md | 22 +++++----------------- gradle.properties | 5 ++--- 2 files changed, 7 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 75d9745..b1836c0 100644 --- a/README.md +++ b/README.md @@ -70,18 +70,6 @@ The most significant parts of the current configuration are: 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 | | ------------------------- | ------------------------------------------------------------------------------------- | | `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. ├── LICENSE License, MIT by default ├── README.md README -├── build Output build directory +├── build/ Output build directory ├── build.gradle.kts Gradle configuration ├── detekt-config.yml Detekt configuration ├── gradle -│   └── wrapper Gradle Wrapper +│   └── wrapper/ Gradle Wrapper ├── gradle.properties Gradle configuration properties ├── gradlew *nix Gradle Wrapper binary ├── gradlew.bat Windows Gradle Wrapper binary └── src Plugin sources └── main - ├── kotlin Kotlin source files - ├── java Java source files - └── resources Resources - plugin.xml, icons, messages + ├── kotlin/ Kotlin source files + ├── java/ Java source files + └── resources/ Resources - plugin.xml, icons, messages ``` Beside of the configuration files, the most important part is the `src` directory containing our implementation diff --git a/gradle.properties b/gradle.properties index 2df7045..36e0db2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,5 @@ -# Available idea versions: -# https://www.jetbrains.com/intellij-repository/releases -# https://www.jetbrains.com/intellij-repository/snapshots +# IntelliJ Platform Artifacts Repositories +# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html pluginGroup = org.jetbrains.plugins.template pluginName = Template