From edfacaef8117104d4d1d4e99def762a2012532ed Mon Sep 17 00:00:00 2001 From: JohnHake Date: Sat, 15 Jun 2019 20:29:24 -0700 Subject: [PATCH] Add comments from review. --- action_basics/.gitignore | 11 +++++++++++ action_basics/src/main/resources/META-INF/plugin.xml | 2 +- gradle_plugin_demo/build.gradle | 4 ++++ 3 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 action_basics/.gitignore diff --git a/action_basics/.gitignore b/action_basics/.gitignore new file mode 100644 index 000000000..8388aebc6 --- /dev/null +++ b/action_basics/.gitignore @@ -0,0 +1,11 @@ +# Created by .ignore support plugin (hsz.mobi) +### Gradle template +.gradle +build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar + diff --git a/action_basics/src/main/resources/META-INF/plugin.xml b/action_basics/src/main/resources/META-INF/plugin.xml index 684a22395..6aea96a73 100644 --- a/action_basics/src/main/resources/META-INF/plugin.xml +++ b/action_basics/src/main/resources/META-INF/plugin.xml @@ -5,7 +5,7 @@ org.intellij.sdk.action - SDK Action Sample Project + SDK: Action Sample Project 2.0.0 diff --git a/gradle_plugin_demo/build.gradle b/gradle_plugin_demo/build.gradle index e4a666d54..05433faea 100644 --- a/gradle_plugin_demo/build.gradle +++ b/gradle_plugin_demo/build.gradle @@ -1,3 +1,7 @@ plugins { id "org.jetbrains.intellij" version "0.4.7" } + + +sourceCompatibility = 1.8 +