maven commands

the tutorial is actually really good, and i think i understand it… ok currentlly its just the basic tutorial project, but hey… i really didnt know anything…

following command list might be useful 🙂

  • mvn compile: as its named, compiles the project 🙂
  • mvn test: runs all the implemented test…
  • mvn package: comiles and tests the project and creates the jar file, or whatever is defined…
  • mvn install: puts the jarfile to the repository… as defined somewhere… hopefully the somewhere will be solved in the tutorial 🙂

there are other commands… but currentlly less important…

Comments are closed.