Browse Source

SONAR-15595 Fix plugin dependency packaging

tags/9.8.0.63668
Zipeng WU 1 year ago
parent
commit
8f833f4b90

+ 0
- 3
plugins/sonar-education-plugin/build.gradle View File

@@ -23,9 +23,6 @@ jar {
'Plugin-Name': 'Education'
)
}
into('META-INF/lib') {
from configurations.compileClasspath
}
}

artifactoryPublish.skip = false

+ 1
- 4
plugins/sonar-xoo-plugin/build.gradle View File

@@ -1,6 +1,3 @@
configurations {
testImplementation.extendsFrom(compileOnlyApi)
}

dependencies {
api 'com.google.guava:guava'
@@ -30,7 +27,7 @@ jar {
)
}
into('META-INF/lib') {
from configurations.compileClasspath
from configurations.runtimeClasspath
}
}


Loading…
Cancel
Save