作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑:
事实证明,这不是错误,而是我的配置错误。
原始问题
由于 this bug在 IntelilJ 我必须添加
configurations {
all {
exclude(group = "ch.qos.logback", module = "logback-classic")
}
}
在 IntelliJ gradle 同步期间,不要忘记将其删除。
if (project.hasProperty("intellijHack"))
configurations {
all {
exclude(group = "ch.qos.logback", module = "logback-classic")
}
}
最佳答案
将命令行选项直接在 IDE 中传递给 IDE gradle 导入器进程 is not yet supported (仅适用于带有“脚本参数”字段的 Gradle 任务运行配置)。请投票关注 this request .
它应该适用于 gradle.properties
文件,尽管从命令行启动的 Gradle 也会支持此属性。
关于intellij-idea - 如何在 IntelliJ 同步上传递 gradle 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47218666/
我是一名优秀的程序员,十分优秀!