:PROPERTIES: :ID: bcd41e87-120c-455c-8898-996ddaa41f75 :END: #+title: maven-pom-file #+filetags: :guide:java: * Doc Link - [[https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html][Link to apache doc]] * Example of pom.xml #+begin_src xml 4.0.0 com.mycompany.app my-app 1.0-SNAPSHOT my-app http://www.example.com UTF-8 17 org.junit junit-bom 5.11.0 pom import org.junit.jupiter junit-jupiter-api test org.junit.jupiter junit-jupiter-params test ... lots of helpful plugins #+end_src * Commands: *FOR TESTING* #+begin_src bash mvn clean test #+end_src *COMPILING* #+begin_src bash mvn compile #+end_src