Changeset 903 for branches/features
- Timestamp:
- Apr 27, 2011, 5:16:37 PM (14 years ago)
- Location:
- branches/features/grailsUpgrade
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/features/grailsUpgrade/application.properties
r879 r903 12 12 plugins.help-balloons=1.4 13 13 plugins.hibernate=1.3.7 14 plugins.jasper=1.1.315 14 plugins.navigation=1.1.1 16 15 plugins.quartz=0.4.2 -
branches/features/grailsUpgrade/grails-app/conf/BuildConfig.groovy
r902 r903 19 19 20 20 grails.war.resources = { stagingDir, args -> 21 // Remove some duplicate jars. 22 delete file: "${stagingDir}/WEB-INF/lib/jasperreports-2.0.5.jar" 23 delete file: "${stagingDir}/WEB-INF/lib/jasperreports-3.1.2.jar" 24 delete file: "${stagingDir}/WEB-INF/lib/aspectjrt-1.5.4.jar" 25 delete file: "${stagingDir}/WEB-INF/lib/commons-digester-1.7.jar" 26 delete file: "${stagingDir}/WEB-INF/lib/iText-2.0.8.jar" 21 // Remove some duplicate/not required jars. 22 // From export plugin lib dir. 27 23 delete file: "${stagingDir}/WEB-INF/lib/iText-2.1.5.jar" 28 delete file: "${stagingDir}/WEB-INF/lib/jfreechart-1.0.3.jar" 29 delete file: "${stagingDir}/WEB-INF/lib/poi-3.0.2-FINAL-20080204.jar" 30 delete file: "${stagingDir}/WEB-INF/lib/facebook-2.0.4.jar" 24 delete file: "${stagingDir}/WEB-INF/lib/xercesImpl.jar" 25 // From acegi plugin lib dir. 26 delete file: "${stagingDir}/WEB-INF/lib/facebook-java-api-2.0.4.jar" 27 delete file: "${stagingDir}/WEB-INF/lib/easymock.jar" 28 delete file: "${stagingDir}/WEB-INF/lib/cas-client-core-3.1.1.jar" 29 delete file: "${stagingDir}/WEB-INF/lib/openid4java-0.9.2.jar" 30 31 31 } 32 32 … … 62 62 runtime 'mysql:mysql-connector-java:5.1.9' 63 63 64 // Japser plugin. 65 runtime('net.sf.jasperreports:jasperreports:3.7.2') { 66 excludes 'antlr', 'commons-beanutils', 'commons-collections', 'commons-logging', 67 'ant', 'mondrian', 'commons-javaflow','barbecue', 'xml-apis-ext','xml-apis', 'xalan', 'groovy-all', 'hibernate', 'saaj-api', 'servlet-api', 68 'xercesImpl','xmlParserAPIs','spring-core','bsh', 'spring-beans', 'jaxen', 'barcode4j','batik-svg-dom','batik-xml','batik-awt-util','batik-dom', 69 'batik-css','batik-gvt','batik-script', 'batik-svggen','batik-util','batik-bridge','persistence-api','jdtcore','bcmail-jdk14','bcprov-jdk14','bctsp-jdk14' 70 } 64 71 runtime('org.apache.poi:poi:3.5-FINAL') { 65 excludes 'servlet-api', 'commons-logging', 'log4j' 66 } 67 68 runtime('net.sf.jasperreports:jasperreports:3.7.2') { 69 excludes 'xml-apis' 72 excludes 'log4j', 'commons-logging' 70 73 } 71 74 … … 77 80 } 78 81 } 82 79 83 plugins { 80 84 test ":geb:0.6-SNAPSHOT" 81 85 test ":spock:0.5-groovy-1.7" 86 runtime( ':jasper:1.1.3' ) { 87 transitive = false 88 } 82 89 } 83 90
Note: See TracChangeset
for help on using the changeset viewer.