gpt4 book ai didi

java - Selenium - Maven/TestNG : How to add "testng.xml" and log4j2. pom.xml 中的 xml 路径,因此可执行的 .jar 文件也可以在其他计算机上执行?

转载 作者:行者123 更新时间:2023-11-30 05:37:09 26 4
gpt4 key购买 nike

我正在使用 Maven/TestNG/Log4j2。

我们的目标是创建一个可执行的 .jar 文件,该文件将通过 pom.xml 文件运行 testng.xml。

现在,我能够创建一个可执行的 .jar 文件,并能够在我的计算机上成功运行它。但是,当我尝试在另一台计算机上运行相同的 .jar 文件时,它会抛出“FilenotfoundException”,因为它试图使用我的本地路径访问 testng.xml 和 log4j2.xml。

此外,可执行的 .Jar 文件仅在根级别包含 testng.xml 和 log4j2.xml 文件。

这是我的项目结构:

project

我使用了“maven assembly、surefire、编译器插件”和 .xml 文件的资源标记。

这就是我的构建的样子:

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<release>10</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>make-assembly</id>
<!-- bind to the packaging phase -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<!-- get all project dependencies -->
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- MainClass in mainfest make a executable jar -->
<archive>
<manifest>
<mainClass>test.FirstTest</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>.//src/main/java/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java/resources</directory>
<includes>
<include>*.xml</include>
</includes>
</resource>
</resources>
</build>

这就是我的 testNG 主要方法的样子:

public static void main(String[] args) {
TestNG testng = new TestNG();
List<String> suites = Lists.newArrayList();
suites.add(".//src/main/java/resources/testng.xml");
testng.setTestSuites(suites);
testng.run();
}

我们的目标是创建一个与 testng.xml 和 log4j2.xml 捆绑在一起的可执行 .jar 文件。因此我们也可以与其他团队分享。

如果您需要更多信息,请告诉我。

最佳答案

在构建过程中包含和排除文件非常简单。我在下面提供了代码片段供您理解。

<build>
<resources>
<resource>
<directory>src/resources</directory>
<!-- To include the files -->
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<!-- To exclude -->
<excludes>
<exclude>**/*.jpeg</exclude>
<exclude>**/*.gif</exclude>
</excludes>
</resource>
</resources>
.....
.....
</build>

要创建可运行的 jar 文件,请引用下面 github 中非常简单的小项目。

https://github.com/debjava/runnableJar

关于java - Selenium - Maven/TestNG : How to add "testng.xml" and log4j2. pom.xml 中的 xml 路径,因此可执行的 .jar 文件也可以在其他计算机上执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56358951/

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