硒服务器3.141.59和appium7.0.0的Maven程序集插件错误

时间:2019-09-09 14:03:16

标签: selenium-webdriver maven-assembly-plugin

当我升级具有以下依赖项的项目

    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-server</artifactId>
        <version>3.141.59</version>
    </dependency>
    <dependency>
        <groupId>io.appium</groupId>
        <artifactId>java-client</artifactId>
        <version>7.0.0</version>
    </dependency>

我遇到以下错误

  

在项目project_name上执行目标org.apache.maven.plugins:maven-assembly-plugin:2.3:single(make-assembly)失败:创建组装失败:创建组装档案失败AchieveName:打开zip文件时出错- > [帮助1]

同一个Maven程序集插件运行正常,我正在使用以下依赖项:

    <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-server</artifactId>
            <version>3.12.0</version>
    </dependency>
    <dependency>
        <groupId>io.appium</groupId>
        <artifactId>java-client</artifactId>
        <version>6.0.0</version>
    </dependency>

0 个答案:

没有答案