Maven install jar包到本地时报no pom错误

执行的命令如下:

mvn install:install-file -Dfile=C:\Users\Administrator\Desktop\ckfinder\CKFinder-2.6.2.1.jar -DgroupId=com.ckfinder -DartifactId=CKFinder -Dversion=2.6.2.1 -Dpackaging=jar

 cmd报错如下:

[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\Users\Administrator). Please verify you invoked Maven from the correct directory.

 解决方式1:把带点的值加上引号

mvn install:install-file -Dfile=C:\Users\Administrator\Desktop\ckfinder\CKFinder-2.6.2.1.jar -DgroupId='com.ckfinder' -DartifactId='CKFinder' -Dversion='2.6.2.1' -Dpackaging=jar

解决方式2:创建pom.xml文件

单独新建一个文件夹ckfinder然后复制CKFinder-2.6.2.1.jar到此文件夹,在ckfinder中创建pom.xml文件,定义groupId、artifactId、version、packaging。

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.ckfinder</groupId>
    <artifactId>CKFinder</artifactId>
    <version>2.6.2.1</version>
    <packaging>jar</packaging>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

在cmd中重新执行:

mvn install:install-file -Dfile=C:\Users\Administrator\Desktop\ckfinder\CKFinder-2.6.2.1.jar -DgroupId=com.ckfinder -DartifactId=CKFinder -Dversion=2.6.2.1 -Dpackaging=jar

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值