0

私はこのGrailsプラグインを使用しています:

http://grails.org/plugin/excel-export

Apache POI を使用します。現在使用している Apache POI のバージョンを変更したいと考えています。これを達成するには、どのような手順を踏む必要がありますか?

4

1 に答える 1

1

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' 
  }
}
于 2013-10-01T14:24:10.990 に答える