What's new? | Help | Directory | Sign in
Google
bluecove
Java library for Bluetooth
  
  
  
  
    
Search
for
Updated Jan 19, 2008 by skarzhevskyy
Labels: Featured
maven2  
Using maven2 to build application or MIDlet.
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.0.3</version>
            </dependency>
            <!-- If you plan to run application on Linux -->
            <dependency>
                <groupId>net.sf.bluecove</groupId>
                <artifactId>bluecove-gpl</artifactId>
                <version>2.0.3</version>
                <scope>runtime</scope>
            </dependency>
If you are building MIDlet application change scope to provided
            <dependency>
               <groupId>net.sf.bluecove</groupId>
               <artifactId>bluecove</artifactId>
               <version>2.0.3</version>
               <scope>provided</scope>
            </dependency>
We recommend that you use MicroEmulator together with BlueCove for development and debugging J2ME MIDlet applications.

Sign in to add a comment