I've a problem with my xml file The code of my xml file <?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>groupId</groupId> <version>2.0-SNAPSHOT</version> <description>BetterChat allows multiple custom chat channels as well as a staff chat</description> <build> <defaultGoal>clean package install</defaultGoal> <finalName>BetterChat-${project.version}</finalName> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>bukkit-repo</id> <url>http://repo.bukkit.org/content/groups/public</url> </repository> <repository> <id>bungeecord-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.bukkit</groupId> <artifactId>bukkit</artifactId> <version>1.7.9-R0.2</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>net.md-5</groupId> <artifactId>bungeecord-api</artifactId> <version>1.9-SNAPSHOT</version> </dependency> </dependencies> <artifactId>MoreChat</artifactId> </project>