<?xml version="1.0" encoding="UTF-8"?>
<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>
  <groupId>com.github.AlmasB</groupId>
  <artifactId>jbox2d</artifactId>
  <version>2.3.2-fxgl</version>
  <name>jbox2d</name>
  <description>A fork from jbox2d 2.3.0</description>
  <url>https://github.com/AlmasB/jbox2d</url>
  <inceptionYear>2016</inceptionYear>
  <licenses>
    <license>
      <name>Other</name>
      <url></url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>AlmasB</id>
      <name>Almas Baimagambetov</name>
      <email></email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/AlmasB/jbox2d.git</connection>
    <developerConnection>scm:git://github.com/AlmasB/jbox2d.git</developerConnection>
    <url>git://github.com/AlmasB/jbox2d.git</url>
  </scm>
  <properties>
    <maven.source.version>2.4</maven.source.version>
    <junit.version>4.12</junit.version>
    <maven.enforcer.version>1.4.1</maven.enforcer.version>
    <source.version>1.8</source.version>
    <maven.javadoc.version>2.10.3</maven.javadoc.version>
    <maven.compiler.version>3.3</maven.compiler.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <game.utils.version>0.0.3</game.utils.version>
    <commons-math.version>3.5</commons-math.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.github.AlmasB</groupId>
      <artifactId>GameUtils</artifactId>
      <version>${game.utils.version}</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>${junit.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-math3</artifactId>
      <version>${commons-math.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
    </repository>
  </repositories>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>${maven.compiler.version}</version>
        <configuration>
          <source>${source.version}</source>
          <target>${source.version}</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-enforcer-plugin</artifactId>
        <version>${maven.enforcer.version}</version>
        <executions>
          <execution>
            <id>enforce-all</id>
            <goals>
              <goal>enforce</goal>
            </goals>
            <configuration>
              <rules>
                <DependencyConvergence />
                <requireJavaVersion>
                  <version>[1.8.0-40,)</version>
                </requireJavaVersion>
              </rules>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <version>${maven.source.version}</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>${maven.javadoc.version}</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
            <configuration>
              <additionalparam>-Xdoclint:none</additionalparam>
              <tags>
                <tag>
                  <name>defaultValue</name>
                  <placement>a</placement>
                  <head>Default Value:</head>
                </tag>
                <tag>
                  <name>implNote</name>
                  <placement>a</placement>
                  <head>Implementation Note:</head>
                </tag>
              </tags>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
