<?xml version="1.0" encoding="utf-8"?>
<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>net.sf.robocode</groupId>
  <artifactId>robocode.api</artifactId>
  <version>1.9.2.1</version>
  <packaging>jar</packaging>
  <name>Robocode API</name>
  <description>
        Robocode is a programming game, where the goal is to develop a robot battle tank to battle against other tanks in Java or .NET. The robot battles are running in real-time and on-screen.
  </description>
  <url>
      http://robocode.sf.net
  </url>
  <licenses>
      <license>
          <name>Eclipse Public License - v 1.0</name>
          <url>http://www.eclipse.org/legal/epl-v10.html</url>
          <distribution>repo</distribution>
      </license>
  </licenses>
  <scm>
      <connection>https://github.com/robo-code/robocode.git</connection>
      <url>http://sourceforge.net/projects/robocode/</url>
  </scm>
  <developers>
      <developer>
          <id>flemming-n-larsen</id>
          <name>Flemming N. Larsen</name>
          <url>https://github.com/flemming-n-larsen</url>
      </developer>
      <developer>
          <id>pavelsavara</id>
          <name>Pavel Savara</name>
          <url>https://github.com/pavelsavara</url>
      </developer>
  </developers>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>2.5.1</version>
          <configuration>
            <source>1.6</source>
            <target>1.6</target>
            <encoding>8859_1</encoding>
            <optimize>true</optimize>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <executions>
          <execution>
            <id>default-testCompile</id>
            <phase>test-compile</phase>
            <goals>
              <goal>testCompile</goal>
            </goals>
            <configuration>
              <source>1.6</source>
              <target>1.6</target>
              <encoding>8859_1</encoding>
              <optimize>true</optimize>
            </configuration>
          </execution>
          <execution>
            <id>default-compile</id>
            <phase>compile</phase>
            <goals>
              <goal>compile</goal>
            </goals>
            <configuration>
              <source>1.6</source>
              <target>1.6</target>
              <encoding>8859_1</encoding>
              <optimize>true</optimize>
            </configuration>
          </execution>
        </executions>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <encoding>8859_1</encoding>
          <optimize>true</optimize>
        </configuration>
      </plugin>
     </plugins>
  </build>
</project>
