gpt4 book ai didi

java - 无法使用maven获取jar文件中的测试类

转载 作者:行者123 更新时间:2023-12-02 12:54:20 24 4
gpt4 key购买 nike

我已经在 src/test/java 文件夹中使用不同的包创建了 cucumber 测试用例,并希望使用 maven 创建一个包含所有依赖项和类的 jar。它编译良好并且运行良好。但是,在转换为 jar 文件时,不存在任何类/依赖项。后来我使用了 Maven Shade 插件,如下所示,仍然只得到一个 Meta-INF 文件夹,并且任何地方都没有类。使用eclipse IDe和Maven 3.3.9,selenium 2.53。

maven安装后得到了2个jar文件BsMonitor-0.0.1-SNAPSHOT(得到了很多文件,但没有我的类文件)和original-BsMonitor-0.0.1-SNAPSHOT,两者都没有类,而只是一个META-INF 文件夹。

对于阴影插件,在主类标签下,我已将其指向包含我的 Main 方法的类。我不太确定是不是这样。

如图所示,src/Main/Java 中没有文件,仅在 src/test/java 中。如何继续此操作?

我的项目结构:

enter image description here

我的 POM:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.cucumber</groupId>
<artifactId>BsMonitor</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>BsMonitor</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-picocontainer</artifactId>
<version>1.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>2.53.0</version>
</dependency>
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>phantomjsdriver</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.sonarsource.sonarlint.core</groupId>
<artifactId>sonarlint-core</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-core</artifactId>
<version>1.2.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.cucumber.Base.NewMain</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

最佳答案

最好遵循 maven 建议的方法,这里是链接希望这有帮助 https://maven.apache.org/plugins/maven-jar-plugin/examples/create-test-jar.html

关于java - 无法使用maven获取jar文件中的测试类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44480603/

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