Make jasperreports optional for context-support

This commit is contained in:
Chris Beams 2012-01-31 17:57:18 +01:00
parent 398cf997b3
commit 9a1a00a651
1 changed files with 4 additions and 1 deletions

View File

@ -284,7 +284,10 @@ project('spring-context-support') {
compile("velocity:velocity:1.5", optional)
compile("commons-collections:commons-collections:3.2", optional)
compile("org.freemarker:freemarker:2.3.15", optional)
compile("jasperreports:jasperreports:2.0.5") { transitive = false; optional = true }
compile("jasperreports:jasperreports:2.0.5") { dep ->
optional dep
transitive = false
}
compile("commons-digester:commons-digester:1.8.1", optional)
compile("commons-beanutils:commons-beanutils:1.8.0", optional)
compile("com.lowagie:itext:2.0.8", optional)