How I run maven project in cmd line

后端 未结 6 2072
失恋的感觉
失恋的感觉 2021-02-02 17:49

I write maven project and I run it in Eclipse but I want to run maven project in using command line so I write

java -jar -Dapple.awt.UIElement=\"true\" target/         


        
6条回答
  •  甜味超标
    2021-02-02 18:23

    1. Please make sure that JAVA_HOME and MAVEN_HOME path are set in environment variables as follows:

      JAVA_HOME: C:\Program Files\Java\jdk1.8.0_181 (Path till JDK folder only not bin folder) MAVEN_HOME: C:\Users\Amit Joshi\Downloads\apache-maven-3.6.0

    2. Add both paths in environment variable 'Path' as follows: %MAVEN_HOME%\bin %JAVA_HOME%\bin

    3. Open your project using IDE (in my case I am using intelliJIDEA)

    4. Click on Run button and copy the command executed in console window.

    5. Open cmd and traverse to the root folder of your maven project.

    6. Paste and execute the copied command and your project will run successfully.

提交回复
热议问题