snowman-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.projectdarkstar.example.projectsnowman</groupId>
<artifactId>snowman-common</artifactId>
<version>0.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.projectdarkstar.example.projectsnowman</groupId>
<artifactId>projectsnowman</artifactId>
<version>0.1</version>
</parent>
<artifactId>snowman-common</artifactId>
<name>Project Snowman Common</name>
<packaging>jar</packaging>
<description>
Common code module for the Project Snowman example.
</description>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
</dependency>
<dependency>
<groupId>com.projectdarkstar.ext.com.jmonkeyengine</groupId>
<artifactId>jme</artifactId>
</dependency>
<dependency>
<groupId>com.projectdarkstar.ext.com.jmonkeyengine</groupId>
<artifactId>jme-terrain</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Disable unpacking the binaries -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-lwjgl-binaries</id>
<phase></phase>
</execution>
<execution>
<id>unpack-bdb-binaries</id>
<phase></phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>