jbox2d-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.pirckheimer-gymnasium</groupId>
<artifactId>jbox2d-library</artifactId>
<version>4.0.0</version>
</dependency><?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>
<parent>
<groupId>de.pirckheimer-gymnasium</groupId>
<artifactId>engine-pi-project</artifactId>
<version>0.45.0</version>
<relativePath>../../..</relativePath>
</parent>
<artifactId>jbox2d-library</artifactId>
<version>4.0.0</version>
<packaging>jar</packaging>
<name>JBox2D Library</name>
<description>A 2D java physics engine, a port of the C++ Box2d engine. This is the core physics engine. It is identical to the latest version on GitHub (https://github.com/jbox2d/jbox2d), but includes more Javadoc documentation.</description>
<url>https://engine-pi.github.io/engine-pi</url>
<build>
<pluginManagement>
<plugins>
<!--
https://code.revelc.net/formatter-maven-plugin/examples.html#Multimodule_Configuration -->
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<dependencies>
<dependency>
<groupId>de.pirckheimer-gymnasium</groupId>
<artifactId>engine-pi-build-tools</artifactId>
<version>0.2.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<!-- https://maven.apache.org/plugins/maven-compiler-plugin/ -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<excludes>
<exclude>**/gwtemul/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>