More IntelliJ IDEA Repo information (release/snapshot)

This commit is contained in:
Breandan Considine 2016-03-03 00:57:26 -05:00
parent 803e00059c
commit c19ddcd6a5
2 changed files with 7 additions and 4 deletions

View File

@ -46,7 +46,6 @@ GEM
ffi (>= 0.5.0) ffi (>= 0.5.0)
safe_yaml (1.0.4) safe_yaml (1.0.4)
sass (3.4.20) sass (3.4.20)
wdm (0.1.1)
PLATFORMS PLATFORMS
ruby ruby
@ -58,7 +57,6 @@ DEPENDENCIES
jekyll-redirect-from jekyll-redirect-from
rake rake
rouge! rouge!
wdm (>= 0.1.0)
BUNDLED WITH BUNDLED WITH
1.10.6 1.11.2

View File

@ -65,7 +65,12 @@ group 'com.jetbrains'
version '1.2' // Update me! 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 ### 2.3 Deploy your plugin