Windows console: Maven archetype list is too long

后端 未结 2 1782
攒了一身酷
攒了一身酷 2021-02-12 20:03

Problem: List generated by \'mvn archetype:generate\" is too long for windows console to display (list gets cut off at about 200-th item

I tried learnin

相关标签:
2条回答
  • 2021-02-12 20:44

    Another possible solution would be to increase the Buffer and or / window-size of the console.

    Right click on the frame and choose Defaults - this entry sets the default values for all console windows. In Windows 7 click on the layout-tab and increase the "Screen Buffer Size" height

    If you choose the entry Properties in the context menu, these settings only apply to the current instance of the console.

    0 讨论(0)
  • 2021-02-12 20:56

    Add > output.txt to the end of your command:

    mvn archetype:generate > output.txt
    

    This will redirect standard out into a file called output.txt

    0 讨论(0)
提交回复
热议问题