当前位置: 首页 > 知识库问答 >
问题:

pom.xml com.cardboardfish:http-sms:jar:1.0中缺少工件

濮阳安澜
2023-03-14
<dependency>
    <groupId>com.cardboardfish</groupId>
    <artifactId>http-sms</artifactId>
    <version>1.0</version>
</dependency>

mvn安装:install-file-dfile=cbfsms.jar-dgroupid=com.cardboardfish-dartifactid=http-sms-dversion=1.0-dpackaging=jar

 [INFO] Scanning for projects... [INFO]
 ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO]
 ------------------------------------------------------------------------ [INFO] Total time: 0.125 s [INFO] Finished at:
 2018-03-11T11:18:07+05:30 [INFO] Final Memory: 4M/116M [INFO]
 ------------------------------------------------------------------------ [ERROR] The goal you specified requires a project to execute but there
 is no POM in this directory
 (C:\Users\test\.m2\repository\com\cardboardfish\http-sms\1.0). Please
 verify you invoked Maven from the correct directory. -> [Help 1]
 [ERROR] [ERROR] To see the full stack trace of the errors, re-run
 Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to
 enable full debug logging. [ERROR] [ERROR] For more information about
 the errors and possible solutions, please read the following articles:
 [ERROR] [Help 1]
 http://cwiki.apache.org/confluence/display/MAVEN/MissingProjectException

共有1个答案

东方俊力
2023-03-14

在做了大量的工作之后。我发现由于pom.xml文件丢失,它给出了异常,所以我为cbfsms.jar创建了一个pom.xml,具有以下属性

<?xml version="1.0" encoding="UTF-8"?>
<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.cardboardfish</groupId>
    <artifactId>http-sms</artifactId>
    <version>1.0</version>
    <name>cardboard_fish_sbf_sms_jar</name>
    <description>helpful jar for sms utilities</description>

    <dependencies>
    </dependencies>

</project>

我使用了Maven命令,它对我很有效

mvn安装:install-file-dfile=cbfsms.jar-dgroupid=com.cardboardfish-dartifactid=http-sms-dversion=1.0-dpackaging=jar

 类似资料:
  • 我在中遇到一个问题。它显示以下错误。我试图通过添加所需的依赖项来更新maven,但无法解决这个问题。 资源路径位置类型缺少工件组织。springframework。安全性:Spring Securityweb:jar:4.2.2。构建快照pom。xml/Spring Security示例xml不安全第171行Maven依赖问题

  • 问题内容: 我已经从Eclipse Indigo下的maven-achetype-quickstart创建了一个简单项目,然后转到pom.xml gui编辑器,并在“依赖项”选项卡中通过在适当的对话框中进行搜索添加了依赖性。现在我的pom.xml看起来像 Eclipse说我的POM有很多问题,例如 缺少工件javax.jms:jms:jar:1.1 pom.xml / Test_Maven_03第

  • 我在Eclipse(EE Developer)中导入了一个Maven项目,在pom中也导入了它。xml文件中包含以下错误:“此代码中缺少工件com.oracle:ojdbc7:jar:12.1.0.2”: 我通过下载ojdbc7来实现这一点。jar并运行以下命令: 在那之后,我获得了作为输出的构建成功,如果我去了。我在com中看到的m2文件夹-

  • 我正在使用Eclipse Luna并处理一个maven项目。当我在pom.xml中为ojdbc jar添加条目时,它在XML中给出了错误。我找不到问题的任何原因,因为groupId、artifactId和version是正确的。 我怎样才能修复这个问题?

  • 添加com.oracle ojdbc14 10.2.0.1.0时 我的pom.txt 我在pom.xml文件中出现错误:丢失工件com.oracle:ojdbc14:jar:10.2.0.1.0,并且我无法在本地存储库中看到ojdbc14.jar文件。我遵循的步骤有什么问题吗。请帮帮我。 谢谢