gpt4 book ai didi

java - 您的项目包含错误,请在运行之前修复它们 :Eclipse

转载 作者:行者123 更新时间:2023-12-01 12:37:49 25 4
gpt4 key购买 nike

我正在构建 Android 应用程序,其中我从此链接导入了 Maven 库之一 https://github.com/devnied/EMV-NFC-Paycard-Enrollment.My项目名称是 Nfcs,我的项目中没有错误,并且我已成功添加了项目中的所有依赖项,但是当我运行项目时,错误窗口打开,显示“您的项目包含错误,请在运行之前修复它们”。请帮我找到出错误... enter image description here

enter image description here

库项目的pom.xml。

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>library</artifactId>
<packaging>jar</packaging>
<name>EMV paycard library</name>

<parent>
<groupId>com.github.devnied.emvnfccard</groupId>
<artifactId>parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
</parent>

<dependencies>
<dependency>
<groupId>com.github.devnied</groupId>
<artifactId>bit-lib4j</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>

<!-- Unit test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-easymock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
</plugins>
</build>


</project>

最佳答案

您的错误消息显示:

... Run Maven->Update Project or Use Quick Fix.

正如您在 Maven 项目中看到的错误,您应该按照 Eclipse 给您的提示进行操作!右键单击您的 Maven 项目 > Maven > 更新项目。

通常,Eclipse 提示非常有用。

阅读this post了解这个函数的用途。您必须记住,Maven 不是 Eclipse 中的“ native ”构建管理器,因此需要进行一些调整和其他操作才能使其正常工作。

关于java - 您的项目包含错误,请在运行之前修复它们 :Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25413184/

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