My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
maven2  
Using maven2 to build application or MIDlet.
Featured
Updated Feb 4, 2010 by skarzhev...@gmail.com
BlueCove can be found in maven Central Repository maven.org and ibiblio.org.
To use BlueCove in your maven2 project you need to add this dependency to your pom.xml:
            <dependency>
                <groupId>net.sf.bluecove</groupId>
                <artifactId>bluecove</artifactId>
                <version>2.1.0</version>
            </dependency>

            <!-- If you plan to run application on Linux -->
            <dependency>
                <groupId>net.sf.bluecove</groupId>
                <artifactId>bluecove-gpl</artifactId>
                <version>2.1.0</version>
                <scope>runtime</scope>
            </dependency>

            <!-- If you plan to test your application in emulated Bluetooth mode -->
            <dependency>
                <groupId>net.sf.bluecove</groupId>
                <artifactId>bluecove-emu</artifactId>
                <version>2.1.0</version>
                <scope>test</scope>
            </dependency>            
If you are building MIDlet application change scope to provided
            <dependency>
               <groupId>net.sf.bluecove</groupId>
               <artifactId>bluecove</artifactId>
               <version>2.1.0</version>
               <scope>provided</scope>
            </dependency>
We recommend that you use MicroEmulator together with BlueCove for development and debugging J2ME MIDlet applications.
Comment by woodmirr...@gmail.com, Dec 29, 2011

Like it is page


Sign in to add a comment
Powered by Google Project Hosting