aboutsummaryrefslogtreecommitdiffstats
path: root/tests/plugins/property-relocation-plugin/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/property-relocation-plugin/build.gradle')
-rw-r--r--tests/plugins/property-relocation-plugin/build.gradle18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/plugins/property-relocation-plugin/build.gradle b/tests/plugins/property-relocation-plugin/build.gradle
new file mode 100644
index 00000000000..14ed5d44966
--- /dev/null
+++ b/tests/plugins/property-relocation-plugin/build.gradle
@@ -0,0 +1,18 @@
+dependencies {
+ compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow')
+}
+
+jar {
+ manifest {
+ attributes(
+ 'Plugin-Key': 'property-relocation-plugin',
+ 'Plugin-Version': version,
+ 'Plugin-Class': 'PropertyRelocationPlugin',
+ 'Plugin-ChildFirstClassLoader': 'false',
+ 'Sonar-Version': '7.1-SNAPSHOT',
+ 'SonarLint-Supported': 'false',
+ 'Plugin-Name': 'property-relocation-plugin',
+ 'Plugin-License': 'GNU LGPL 3'
+ )
+ }
+}