diff options
author | Evgeny Mandrikov <mandrikov@gmail.com> | 2019-08-09 02:52:46 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-08-09 20:21:23 +0200 |
commit | 2e3b2cd88fe583b10228014a8b62680ebe8b555a (patch) | |
tree | eeeb68635accc2fa307397f495310a156a0f42f3 /plugins | |
parent | e0cfd1559e29265d1b399eb99160757eb8372ddc (diff) | |
download | sonarqube-2e3b2cd88fe583b10228014a8b62680ebe8b555a.tar.gz sonarqube-2e3b2cd88fe583b10228014a8b62680ebe8b555a.zip |
JAR of sonar-xoo-plugin should not contain sonar-plugin-api
* Plugins should not embed sonar-plugin-api, unfortunately this
happened due to typo in efad42ce25ddaa8083546859c6c05a635260b77d
* And this was preventing caching of build task ":sonar-scanner-engine:test"
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-xoo-plugin/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-xoo-plugin/build.gradle b/plugins/sonar-xoo-plugin/build.gradle index 1a8903168c2..df25e2a4593 100644 --- a/plugins/sonar-xoo-plugin/build.gradle +++ b/plugins/sonar-xoo-plugin/build.gradle @@ -7,7 +7,7 @@ dependencies { compile 'commons-io:commons-io' compile 'commons-lang:commons-lang' compile 'org.apache.commons:commons-csv' - compile project(path: ':sonar-plugin-api', configuration: 'shadow') + compileOnly project(path: ':sonar-plugin-api', configuration: 'shadow') compileOnly 'com.google.code.findbugs:jsr305' testCompile 'junit:junit' |