Das POM

Das angelegte POM ist das Projektmodell, das die Metadaten des Projektes enthält. Aus diesen Informationen erstellt Maven dann den Build-Prozess. Unser im vorigen Schritt bei der Erstellung des Projekts angelegtes POM sieht so aus:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XML
Schema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.huettermann.agile</groupId>
<artifactId>agile</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>agile</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> ...

Get Agile Java-Entwicklung in der Praxis now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.