From c19ddcd6a5f39482bfdb0c625724eef5b9a48c6f Mon Sep 17 00:00:00 2001 From: Breandan Considine Date: Thu, 3 Mar 2016 00:57:26 -0500 Subject: [PATCH] More IntelliJ IDEA Repo information (release/snapshot) --- Gemfile.lock | 4 +--- tutorials/build_system/deployment.md | 7 ++++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 0484122fd..f1ea4f873 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -46,7 +46,6 @@ GEM ffi (>= 0.5.0) safe_yaml (1.0.4) sass (3.4.20) - wdm (0.1.1) PLATFORMS ruby @@ -58,7 +57,6 @@ DEPENDENCIES jekyll-redirect-from rake rouge! - wdm (>= 0.1.0) BUNDLED WITH - 1.10.6 + 1.11.2 diff --git a/tutorials/build_system/deployment.md b/tutorials/build_system/deployment.md index 9c03e747a..f1cfd1c88 100644 --- a/tutorials/build_system/deployment.md +++ b/tutorials/build_system/deployment.md @@ -65,7 +65,12 @@ group 'com.jetbrains' version '1.2' // Update me! ``` -When you run `gradle runIdea` with a build script containing the above snippet, Gradle will download the appropriate version of IntelliJ IDEA from the [Snapshot Repository](https://www.jetbrains.com/intellij-repository/snapshots), configure the plugin sandbox, install your plugin, and launch a new instance of the IDE. All this can be done directly from the command line, without any prior tooling assistance. +When you run `gradle runIdea` with a build script containing the above snippet, Gradle will download the appropriate version of IntelliJ IDEA from either a [Snapshot](https://www.jetbrains.com/intellij-repository/snapshots) (time-based) or [Release](https://www.jetbrains.com/idea/help/managing-plugins.html) (version based) repository, configure the plugin sandbox, install your plugin, and launch a new instance of the IDE. This task can be run directly from the command line, without any prior tooling assistance. For best results, you should choose + +For best results, plugin developers should build against a fixed version, rather than `LATEST-TRUNK-SNAPSHOT`. For information about available versions of the IntelliJ Platform, you may consult the following URLs for the most recent updates: + +* https://www.jetbrains.com/intellij-repository/releases +* https://www.jetbrains.com/intellij-repository/snapshots ### 2.3 Deploy your plugin