gradle-sonar-packaging-plugin
gradle-sonar-packaging-plugin copied to clipboard
Gradle Plugin for building SonarQube plugins.
I'm getting the following error when trying to use the plugin: ``` org.gradle.api.plugins.InvalidPluginException: An exception occurred applying plugin request [id: 'com.iadams.sonar-packaging', version: '0.1.3'] ``` By looking at --stacktrace, it seems...
`pluginPackaging` fails *Stacktrace* ``` * What went wrong: Execution failed for task ':project:pluginPackaging'. > Could not get unknown property 'classesDir' for main classes of type org.gradle.api.internal.tasks.DefaultSourceSetOutput. * Try: Run with...
`compile` is deprecated since Gradle 3.4, one should use `implementation` instead https://docs.gradle.org/current/userguide/java_plugin.html#tab:configurations The plugin doesn't pick up any dependencies declared for the `implementation` scope and consequently doesn't package them into...
I do not why but after updating just the kotlin dependencies in [my project](https://github.com/arturbosch/sonar-kotlin), the plugin class can not be found anymore. Nothing besides the dependencies changed: ``` FAILURE: Build...
See here: https://docs.gradle.org/current/release-notes#support-for-declaring-compile-time-only-dependencies-with-java-plugin This means that in theory, we do not have to declare anymore a new `provided` configuration and use that for the sonar-plugin-api jar. If I try and...