Tuesday, January 13, 2009

Build Fall ME Using Maven

I came across this project the other day: Spring type of approach for integration with MIDP interfaces.
That's interesting for obvious reasons.

Unfortunately, the project can only be built using NetBeans. I created a pom.xml file, with the intent to upload it to a Maven repository, one of these days.

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.java.fallme</groupId>
<artifactId>fallme</artifactId>
<version>0.6</version>
<name>Fall ME</name>
<dependencies>
<dependency>
<groupId>org.microemu</groupId>
<artifactId>midpapi20</artifactId>
<version>2.0.3</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
</build>
</project>

0 comments: