执行的命令如下:
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