gpt4 book ai didi

java - Junit 和 Selenium 的 Maven 编译错误

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

为了与 m2e bug/问题保持一致,我遵循@ SL4j m2e fails to load in Eclipse IDE提到的解决方案.

我的 Pom.xml 看起来像这样(对于我的 JUnit 和 Selenium 依赖项):

<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>TestJUnit</groupId>
<artifactId>TestJUnit</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.41.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.10-FINAL</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>2.41.0</version>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

但是,当我执行 mvncompile 时,我收到以下错误:

[ERROR] /path:/to/file/<foldername>/<JUnitClassName>.java:[9,17] package org.junit does
not exist

我是 Maven 新手,我在这里做错了什么吗?

最佳答案

在您的 <dependencies> 中列表中,您指定 JUnit 的范围为 test ,这意味着它仅在您执行 mvn test 时才包含在 jar 中,但不包含在 mvn compile 中。如果您希望 JUnit 包含在最终的 jar 中,请更改 <scope>test</scope><scope>compile</scope>或者你可以直接取下尖齿,它们的作用都是一样的。

TL;DR 使用 mvn test测试您的应用程序;或更改 <scope>test</scope><scope>compile</scope>在junit依赖减速中。

当我第一次开始使用maven时,我做了同样的事情,几乎每个人都这样做:P

关于java - Junit 和 Selenium 的 Maven 编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23830740/

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