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 回答