jbox2d-library
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.pirckheimer-gymnasium</groupId>
<artifactId>jbox2d-library</artifactId>
<version>3.1.0</version>
</dependency><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>
<artifactId>jbox2d</artifactId>
<groupId>de.pirckheimer-gymnasium</groupId>
<version>3.1.0</version>
</parent>
<artifactId>jbox2d-library</artifactId>
<name>jbox2d-library</name>
<description>A 2D java physics engine, a port of the C++ Box2d engine. This is the core physics engine.</description>
<url>https://github.com/engine-pi/jbox2d</url>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/gwtemul/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>