What does it take to build, distribute & run java application?
What are the distribution options?
project_root |- src |- main |- java |- resources |- test |- java |- resources |- pom.xml
pom.xml
<project> <modelVersion>4.0.0</modelVersion> <groupId>cz.muni.fi.pv168</groupId> <artifactId>zinger</artifactId> <version>1.0-SNAPSHOT</version> </project>
${M2_HOME}/repository
~/.m2/repository
Let's look at full pom.xml
"I don't like it, what are the other options?"