No plugin found for prefix ‘archetype‘ in the current project and in the plugin groups [org.apache.m

出现这个错误的原因最大可能是本地仓库的路径中有空格,第二个可能就是网上说的网络无法访问,可以把maven的仓库换成阿里云的仓库

    
      aliyunmaven
      *
      阿里云公共仓库
      https://maven.aliyun.com/repository/public
      
    

Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.0:generate (default-cli) on project standalone-pom: Directory demo3 already exists - please run from a clean directory

这个错误是因为你当前创建的项目是存在的,即使项目中没有任何东西都会报错。

maven创建项目代码

mvn archetype:generate "-DgroupId=com.test.java" "-DartifactId=demo4" "-DarchetypeArtifactId=maven-archetype-quickstart" "-DinteractiveMode=false"

maven会根据DgroupId生成package。

现在流行的IDE应该都会自带支持maven,不需要自己重新安装。

你可能感兴趣的:(apache,java,maven)