a few more gradle fixes

This commit is contained in:
ghidravore 2019-04-29 15:28:16 -04:00
parent 91beac819c
commit 1f82aa5e8e
2 changed files with 1 additions and 10 deletions

View file

@ -156,12 +156,3 @@ ext.addExports = { List<String> exports ->
}
}
}
afterEvaluate {
eclipse.classpath.file.whenMerged { classpath ->
classpath.entries.removeAll { ent ->
ent instanceof Library && !ent.path.endsWith('.jar')
}
classpath.entries.findAll { entry -> entry.kind == 'lib' }*.exported = true
}
}