Developped by Maxime HAMM [email protected]
This plugin is compatible with all Jetbrain products
plugin
: main plugin codeextensions
: extensions (future use)- ...
common
: code used by plugin and extensions
https://plugins.jetbrains.com/plugin/16289-cucumber-to-tzatziki
Import using gradle (Gradle should use Java 11)
- Launch task
build
from root module - Run all tests from module
./test
Launch task runIde
from plugin
module
Setup a system variable :
- Edit .bash_profile`
- Add
export ORG_GRADLE_PROJECT_intellijPublishToken='xxxx'
Token is known by Maxime HAMM :)
- Build using task
build
from root module - Run tests in
./test
module - Verify compatibility using task
runPluginVerifier
fromplugin
module
- Upgrade version in
./build.gradle
- Update change note in
./plugin/build.gradle
- Publish to marketplace using task
publishPlugin
from module.plugin
In order to let the plugin be compatible with any language,
do not add any dependency to Intellij IDEA plugin
in modules plugin
and common
. i.e do not change
this in build.gradle
files :
intellij {
version 'xxxx'
intellij.type = 'xx'
}
Enjoy !