gpt4 book ai didi

selenium - 如何在 Grails 2.2.2 中从依赖项中排除文件

转载 作者:行者123 更新时间:2023-12-02 14:40:44 25 4
gpt4 key购买 nike

我正在编译以下依赖项:

compile 'org.seleniumhq.selenium:selenium-java:2.48.2'

它正在返回这个名为 asm-3.1.jar 的特定 Jar ,这与我正在编译的另一件事相冲突。

如何从中排除这个文件?

我尝试使用此解决方案,但没有运气:
compile ('org.seleniumhq.selenium:selenium-server:2.48.2'){
excludes 'org.objectweb.asm'
}

最佳答案

我不认为这种依赖来自 Selenium 。 Grails 2.2.2 对 asm 3.1 有明确的运行时依赖。

https://github.com/grails/grails-core/blob/2185428f9acdfbafb268534a166aa4ab7ff510d4/grails-core/build.gradle#L49 .

与此不同,排除依赖的语法可以在 http://docs.grails.org/2.2.2/guide/conf.html#ivy 找到。 .

你可以使用这样的东西:

compile ('org.seleniumhq.selenium:selenium-server:2.48.2'){
exclude 'asm'
}

正如我上面所说,这不会摆脱 asm依赖,因为 Grails 2.2.2 本身正在拉动它。

关于selenium - 如何在 Grails 2.2.2 中从依赖项中排除文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37304697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com