Skip to content

Instantly share code, notes, and snippets.

@jianhuabi
Forked from michaellihs/maven-cheatsheet.md
Created September 12, 2021 07:01
Show Gist options
  • Select an option

  • Save jianhuabi/8eed8c296b6419d5bd8a990c1eb909b5 to your computer and use it in GitHub Desktop.

Select an option

Save jianhuabi/8eed8c296b6419d5bd8a990c1eb909b5 to your computer and use it in GitHub Desktop.
Maven Cheatsheet

POM - Project Object Model

See [http://maven. apache.org/pom.html](http://maven. apache.org/pom.html)

Minimal POM:

<project>
     <modelVersion>4.0.0</modelVersion>
     <groupId>com.packt</groupId>
     <artifactId>sample-one</artifactId>
     <version>1.0.0</version>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment