Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a group and description for the runPluginVerifier #338

Closed
opticyclic opened this issue Jul 26, 2020 · 1 comment
Closed

Add a group and description for the runPluginVerifier #338

opticyclic opened this issue Jul 26, 2020 · 1 comment
Assignees
Labels
feature New feature or request

Comments

@opticyclic
Copy link

Problem

It is useful to import your project into other plugin projects to use the plugin verifier.

e.g.

apply from:'https://github.com/raw/FWDekker/intellij-randomness/master/gradle/scripts/verifier.gradle'

runPluginVerifier {
    pluginFileName = "$rootProject.name-$version"
    ides = ["IC-2019.3", "IC-2020.1"]
    verifierVersion = "1.241"
}

However, this appears under the 'other' section of gradle tasks.

Suggested solution
Add a Group and Description to the task to make it clearer.
e.g.

   group = 'intellij'
   description = 'Test the plugin for binary compatibility against different versions of IDEA'

Alternative solutions
I can add it manually e.g.


apply from:'https://github.com/raw/FWDekker/intellij-randomness/master/gradle/scripts/verifier.gradle'

runPluginVerifier {
    group = 'intellij'
    description = 'Test the plugin for binary compatibility against different versions of IDEA'
    pluginFileName = "$rootProject.name-$version"
    ides = ["IC-2019.3", "IC-2020.1"]
    verifierVersion = "1.241"
}
@opticyclic opticyclic added the feature New feature or request label Jul 26, 2020
@FWDekker FWDekker changed the title Add A Group And Description For The runPluginVerifier Add a group and description for the runPluginVerifier Jul 26, 2020
@FWDekker
Copy link
Owner

Thanks for the clear issue description!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants