GithubHelp home page GithubHelp logo

robertlin / gradle-intellij-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jetbrains/intellij-platform-gradle-plugin

0.0 1.0 0.0 640 KB

Plugin for building plugins for IntelliJ IDEs

Groovy 100.00%

gradle-intellij-plugin's Introduction

Join the chat at https://gitter.im/JetBrains/gradle-intellij-plugin Gradle Plugin Release

This project requires JVM version of at least 1.7

gradle-intellij-plugin

This plugin allows you to build plugins for IntelliJ platform using specific IntelliJ SDK and bundled plugins.

The plugin adds extra IntelliJ-specific dependencies, patches processResources tasks to fill some tags (name, version) in plugin.xml with appropriate values, patches compile tasks to instrument code with nullability assertions and forms classes made with IntelliJ GUI Designer and provides some build steps which might be helpful while developing plugins for IntelliJ platform.

Usage

Gradle >= 2.1

buildscript {
  repositories {
    maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
  }
}

plugins {
  id "org.jetbrains.intellij" version "0.2.9"
}

Gradle < 2.1

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
    maven { 
      url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' 
    }
    
  }
  dependencies {
    classpath "gradle.plugin.org.jetbrains:gradle-intellij-plugin:0.2.9"
  }
}

apply plugin: 'org.jetbrains.intellij'

Snapshot

buildscript {
  repositories {
    mavenCentral()
    maven {
      url "https://oss.sonatype.org/content/repositories/snapshots/"
    }
    maven { 
      url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' 
    }
    
  }
  dependencies {
    classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.2.0-SNAPSHOT"
  }
}

apply plugin: 'org.jetbrains.intellij'

Tasks

Plugin introduces following tasks

  • patchPluginXml collects all plugin.xml files in sources and fill since/until build and version attributes
  • prepareSandbox creates proper structure of plugin, copies patched plugin xml files and fills sandbox directory with all of it
  • buildPlugin assembles plugin and prepares zip archive for deployment
  • runIde executes IntelliJ IDEA instance with the plugin you are developing installed in
  • runIdea the same as runIde. Deprecated and will be remove in 0.3.0
  • publishPlugin uploads plugin distribution archive to http://plugins.jetbrains.com

Configuration

Plugin provides following options to configure target IntelliJ SDK and build archive

  • intellij.version defines the version of IDEA distribution that should be used as a dependency. The option accepts build numbers, version numbers and two meta values LATEST-EAP-SNAPSHOT, LATEST-TRUNK-SNAPSHOT.
    Value may have IC-, IU- or JPS- prefix in order to define IDEA distribution type.

    Default value: LATEST-EAP-SNAPSHOT

  • intellij.localPath defines path to locally installed IDEA distribution that should be used as a dependency. The option accepts path, e.g. /Applications/IntelliJIDEA.app
    intellij.version and intellij.localPath should not be specified at the same time.

    Default value: null

  • intellij.type defines the type of IDEA distribution: IC for community version, IU for ultimate and JPS for jps-only dependencies.

    Default value: IC

  • intellij.plugins defines the list of bundled IDEA plugins and plugins from idea repository that should be used as dependencies in format org.plugin.id:version. E.g. plugins = ['org.intellij.plugins.markdown:8.5.0.20160208']. For bundled plugins a plugin's directory should be used as a name and a version should be omitted, e.g. plugins = ['android', 'Groovy'].

    Default value: <empty>

  • intellij.pluginName is used for naming target zip-archive and defines the name of plugin artifact. of bundled IDEA plugins that should be used as dependencies.

    Default value: $project.name

  • intellij.sandboxDirectory defines path of sandbox directory that is used for running IDEA with developing plugin.

    Default value: $project.buildDir/idea-sandbox

  • intellij.instrumentCode defines whether plugin should instrument java classes with nullability assertions. Also it might be required for compiling forms created by IntelliJ GUI designer.

    Default value: true

  • intellij.updateSinceUntilBuild defines whether plugin should patch plugin.xml with since and until build values, if true then IntelliJIDEABuildNumber will be used as a since value and IntelliJIDEABranch.* will be used as an until value.

    Default value: true

  • intellij.sameSinceUntilBuild defines whether plugin should patch plugin.xml with "open" until build. if true then the same IntelliJIDEABuildNumber will be used as a since value and as an until value, which is useful for building plugins against EAP IDEA builds.

    Default value: false

  • intellij.downloadSources defines whether plugin should download IntelliJ sources while initializing Gradle build. Since sources are no needed while testing on CI, you can set it to false for particular environment.

    Default value: true unless the CI environment variable is set

  • intellij.systemProperties defines the map of system properties which will be passed to IDEA instance on executing runIdea task and tests.
    Also you can use intellij.systemProperty(name, value) method in order to set single system property.

    Deprecated. Use systemProperties methods of a particular tasks like runIde or test.

    Default value: []

  • intellij.alternativeIdePath – absolute path to the locally installed JetBrains IDE. It makes sense to use this property if you want to test your plugin in WebStorm or any other non-IDEA JetBrains IDE. Empty value means that the IDE that was used for compiling will be used for running/debugging as well.

    Default value: <empty>

  • intellij.ideaDependencyCachePath – absolute path to the local directory that should be used for storing IDEA distributions. If empty – Gradle cache directory will be used. Default value: <empty>

Patching plugin.xml

The patchPluginXml task supports following properties:

  • version is a value for <version> tag.
    Default value: <project.version>

  • sinceBuild is a value for <idea-version since-build=""> attribute.
    Default value: <IntelliJIDEABuildNumber>

  • untilBuild is a value for <idea-version until-build=""> attribute.
    Default value: <IntelliJIDEABranch.*>

  • pluginDescription is a value for <description> tag.
    Default value: null

  • pluginXmlFiles is a collections of xml files to patch.
    Default value: <all plugin.xml files with idea-plugin root tag in resources>

  • destinationDir is a directory to store patched xml files.
    Default value: <project.buildDir>/patchedPluginXmlFiles

Publishing plugin

`intellij.publish.* properties are deprecated

  • intellij.publish.username your login at JetBrains plugin repository.
  • intellij.publish.password your password at JetBrains plugin repository.
  • intellij.publish.channel defines channel to upload, you may use any string here, empty string means default channel.
  • intellij.publish.channels defines several channels to upload, you may use any comma-separated strings here, default string means default channel.

    Default value: <empty>

publishPlugin task supports following properties:

  • username is a login at JetBrains plugin repository.

  • password is a password at JetBrains plugin repository.

  • channels are channels names to upload the plugin to.
    Default value: [default]

  • host host of plugin repository.
    Default value: http://plugins.jetbrains.com

  • distributionFile is a file to upload.
    Default value: <output of buildPlugin task>

build.gradle

plugins {
  id "org.jetbrains.intellij" version "0.2.9"
}

intellij {
  version 'IC-2016.1'
  plugins = ['coverage', 'org.intellij.plugins.markdown:8.5.0.20160208']
  pluginName 'MyPlugin'

  publish {
    username 'zolotov'
    password 'password'
    channel 'nightly'
  } 
}

Getting started

Here is the manual on how to start developing plugins for IntelliJ IDEA using Gradle.

Examples

As examples of using this plugin you can check out following projects:

License

Copyright 2017 org.jetbrains.intellij.plugins

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

gradle-intellij-plugin's People

Contributors

baron1405 avatar breandan avatar da1z avatar denwav avatar fmatosqg avatar fposchmann avatar gitter-badger avatar henryju avatar hsz avatar huoguangjin avatar idegtiarenko avatar ignatov avatar jakewharton avatar konifar avatar madisp avatar matklad avatar rahulsom avatar stephan-gh avatar turbo87 avatar udalov avatar uwolfer avatar vladrassokhin avatar winterdroid avatar yole avatar zolotov avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.