NetBeans: Re-run Maven with the -e switch on / PluginResolutionException

后端 未结 4 1494
灰色年华
灰色年华 2021-01-18 11:56

i have no clue about Maven and Netbeans, i updated my netbeans and now my test is not working anymore:

Plugin org.apache.maven.plugins:maven-resources-plugin         


        
4条回答
  •  灰色年华
    2021-01-18 12:48

    NetBeans 6.9.1 - Mac OS X

    To activate the switches you need through Netbeans, go to Preferences --> Miscellaneous --> Maven, then enter the following under Global Execution Options:

    --debug --errors
    

    NetBeans - Windows

    Add debug and errors to Maven in NetBeans (from version 7.3 at up) as follows:

    1. Click Tools.
    2. Click Options.
    3. Click the Java icon.
    4. Click the Maven tab.
    5. Append to Global Execution Options: --debug --errors
    6. Click OK.

    Maven will execute the application with debug and error information included.

提交回复
热议问题