<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mage</groupId> <artifactId>mage-server-plugins</artifactId> <version>1.4.50</version> </parent> <artifactId>mage-game-brawlfreeforall</artifactId> <packaging>jar</packaging> <name>Mage Game Brawl Free For All</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>mage</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> <finalName>mage-game-brawlfreeforall</finalName> </build> <properties/> </project>