Maven in 5 Minutes issue

前端 未结 6 1451
夕颜
夕颜 2021-02-14 04:17

I\'m following Maven in 5 Minutes manual with the following:

mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-a         


        
6条回答
  •  忘掉有多难
    2021-02-14 05:07

    I had a similar error and tried using double quotes to wrap all -D and it worked for me..

    Example:

    mvn archetype:create "-DarchetypeGroupId=org.springframework.ws" "-DarchetypeArtifactId=spring-ws-archetype" "-DarchetypeVersion=2.1.4.RELEASE" "-DgroupId=com.mycompany.hr" "-DartifactId=holidayService"
    

提交回复
热议问题