Version 2 (modified by vegasm, 9 years ago) (diff) |
---|
What is the pom.xml?
The pom.xml is a configuration file which contains all the information about the project itself, its dependencies and plugins to add goals to the project.
Basic information
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>es.unican.meteo</groupId> <artifactId>MyCookieTester</artifactId> <version>0.0.1-SNAPSHOT</version> </project>
Dependencies
Remote servers
<repositories> <repository> <id>thirdparty</id> <url>http://www.meteo.unican.es/nexus/content/repositories/thirdparty</url> </repository> </repositories>