私はこのGrailsプラグインを使用しています:
http://grails.org/plugin/excel-export
Apache POI を使用します。現在使用している Apache POI のバージョンを変更したいと考えています。これを達成するには、どのような手順を踏む必要がありますか?
私はこのGrailsプラグインを使用しています:
http://grails.org/plugin/excel-export
Apache POI を使用します。現在使用している Apache POI のバージョンを変更したいと考えています。これを達成するには、どのような手順を踏む必要がありますか?
Grails は、プラグインを解決するときに一部の依存関係を除外する機能を提供します。したがって、BuildConfig.groovy で次のことができます。
dependencies {
//version need to be replaced to the desired value
compile('org.apache.poi:poi:version')
compile('org.apache.poi:poi-ooxml:version')
}
plugins {
compile(":excel-export:0.1.7") {
//list of dependencies declared inside the plugin that will be ignored.
excludes 'poi', 'poi-ooxml'
}
}