April 30, 2008 – 7:00 pm
I have always had a passion in gaming and decided to see where that passion takes me. I've been following the development of Project Darkstar: SGS since before release canidate one.
I have started to work on a few tutorials or examples of using SGS recently. I'm also a big fan of Maven, and being that I am thought that it would be a good fit for SGS and it's dependencies.
This version of the POM file does not have support for Berkley DB, but all of the other packages are available. To date the SGS project itself is not available in binary format from one of the maven central repositories, but most of its dependencies are.
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.sun</groupId>
<artifactId>sgs</artifactId>
<version>0.9.5.1</version>
<description>Sun Gaming Server API</description>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-core</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Posted in java | No Comments »