在测试包的 *root* 中找不到 *-tests.jar 文件

问题描述

我在 AWS 场上上传测试包时遇到此错误。即:

There was a problem processing your file. We Could not find a *-tests.jar file in the *root* of your test package.

但是,在 zip 文件中提供了 jar。我已按照 https://docs.aws.amazon.com/devicefarm/latest/developerguide/test-types-appium.html

中的给定说明设置了我的代码

以下是我在 POM.xml 中使用的插件

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.6</version>
            <executions>
                <execution>
                    <goals>
                        <goal>test-jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <version>3.1.2</version>
            <executions>
                <execution>
                    <id>copy-dependencies</id>
                    <phase>package</phase>
                    <goals>
                        <goal>copy-dependencies</goal>
                    </goals>
                    <configuration>
                        <outputDirectory>${project.build.directory}/dependency-jars/</outputDirectory>
                    </configuration>
                </execution>
            </executions>
        </plugin>

        <plugin>

            <artifactId>maven-assembly-plugin</artifactId>

            <version>3.3.0</version>

            <executions>

                <execution>

                    <phase>package</phase>

                    <goals>

                        <goal>single</goal>

                    </goals>

                    <configuration>

                        <finalName>zip-with-dependencies</finalName>

                        <appendAssemblyId>false</appendAssemblyId>

                        <descriptors>

                            <descriptor>src/main/assembly/zip.xml</descriptor>

                        </descriptors>

                    </configuration>

                </execution>

            </executions>

        </plugin>

    </plugins>
</build>

非常感谢任何帮助。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)