Exclude findbugs annotations due to LGPL license

This commit is contained in:
Ismael Juma 2016-05-17 18:38:48 +01:00
parent 2d3d714641
commit 3aa366fcf3
1 changed files with 4 additions and 1 deletions

View File

@ -833,7 +833,10 @@ project(':connect:runtime') {
compile libs.jettyServer
compile libs.jettyServlet
compile libs.jettyServlets
compile libs.reflections
compile(libs.reflections) {
// Exclude because of LGPL license
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
testCompile project(':clients').sourceSets.test.output
testCompile libs.easymock