diff options
Diffstat (limited to 'tests/plugins/batch-plugin/build.gradle')
-rw-r--r-- | tests/plugins/batch-plugin/build.gradle | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/plugins/batch-plugin/build.gradle b/tests/plugins/batch-plugin/build.gradle new file mode 100644 index 00000000000..e21395aa1be --- /dev/null +++ b/tests/plugins/batch-plugin/build.gradle @@ -0,0 +1,18 @@ +dependencies { + compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow') +} + +jar { + manifest { + attributes( + 'Plugin-Key': 'batch-plugin', + 'Plugin-Version': version, + 'Plugin-Class': 'com.sonarsource.BatchPlugin', + 'Plugin-ChildFirstClassLoader': 'false', + 'Sonar-Version': '7.1-SNAPSHOT', + 'SonarLint-Supported': 'false', + 'Plugin-Name': 'SonarQube Integration Tests :: Plugins :: Batch', + 'Plugin-License': 'GNU LGPL 3' + ) + } +} |