making a java package in the command line

前端 未结 5 836
别跟我提以往
别跟我提以往 2021-01-05 01:00

Though it\'s probably reccomended one uses and IDE for coding advanced java projects, I personally prefer running almost entirely command-line (using gedit as a text-editor)

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-05 01:44

    You can get along just fine on the command line by using a packaging tool such as Ant or Maven. Maven is especially handy because it is a higher level tool that already knows how to build various project types: command-line apps, webapps, libraries, etc. It also handles library dependencies by downloading them from repositories.

提交回复
热议问题