Reputation: 28653
I want to write some artifactory plugins. What is the best way to do that in my ide having code completion available. furthermore I'm looking for good practices for writing tests for the plugins I'm writing. any recommendations? I couldn't find something useful anywhere
Upvotes: 1
Views: 694
Reputation: 22893
IDE support is provided by gdsl file for IntelliJ IDEA and dsld file for Eclipse (unfortunately, unofficial).
The only tests you can do now is REST calls that will trigger the plugins (for execution) or the events that trigger the plugins (for event listeners) by http-client in integration tests.
Upvotes: 5