Reputation: 1577
I'm developing, compiling, and running my Java project from the Ubuntu command line. The IDE I was using gave me helpers that generated basic project files for me.
Is there something similar available for the command line?
Upvotes: 0
Views: 41
Reputation: 622
You can achieve that using Maven, but you have to define simple pom.xml
first.
Here you can find details: http://maven.apache.org/guides/mini/guide-creating-archetypes.html
@EDIT: Here is better tutorial: http://www.mkyong.com/maven/how-to-create-a-java-project-with-maven/
Upvotes: 1