0

我正在使用 grails 4.0

在我的 build.gradle 中,我有以下条目。

war {
    exclude("**/abc-1.0.0.jar", "**/xyz-1.0.0.jar")
}

但是由于某种原因,当我运行命令时,这两个 jar 都包含在 war 文件中grails prod war

我尝试了各种选项,但似乎没有任何效果。

4

1 回答 1

-1

你确定你没有试图限制依赖......?

前任。

dependencies {
...
    compile("org.grails:grails-plugin-interceptors"){
        exclude(module: 'org.slf4j:slf4j-api:1.7.22')
        exclude(module: 'org.slf4j:jcl-over-slf4j:1.7.22')
    }

}
于 2019-11-30T03:38:32.830 回答