MicroEmulator can be found in maven Central Repository maven.org and ibiblio.org.
Also the releases available from the http://www.microemu.org/maven2 MicroEmulator maven 2 repository. You need to add this repository to your $home/.m2/settings.xml
<repository>
<id>microemu-web</id>
<url>http://www.microemu.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
or
<repository>
<id>pyx4me-web-release</id>
<url>http://www.pyx4me.com/maven2-release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>The latest snapshot builds can be downloaded from the http://www.pyx4me.com/maven2-snapshot MicroEmulator maven 2 snapshot repository.
<repository>
<id>pyx4me-web-snapshot</id>
<url>http://www.pyx4me.com/maven2-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository> <dependency>
<groupId>org.microemu</groupId>
<artifactId>microemulator</artifactId>
<version>2.0.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency> <dependency>
<groupId>org.microemu</groupId>
<artifactId>microemu-javase-applet</artifactId>
<version>2.0.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>For more information on building J2ME application using maven2 see j2me-maven-plugin