11-30-2011 10:04 PM
Hello BlackBerry Developers,
I have recently created a Maven Plugin for building BlackBerry Java apps. It is open sourced and licensed with the Apache License. Here is the Maven plugin page:
http://dev.goodformobile.com/maven-mobile-plugin/
Look at the usage page before you ask any questions. The latest SNAPSHOT is built here:
http://dev.goodformobile.com/bamboo/browse/MMP-SI
and the plugin itself can be downloaded from the Nexus repo:
http://dev.goodformobile.com/nexus/content/reposit
and the source is in SVN.
If you want to add anything or have questions you can submit a patch or send me a message. So far I have only used it with 4.5 through 7.1 but it should work on older stuff. Nothing is Eclipse specific so it should also work with the JDE. I have only used it for a few libraries and apps in the RIM Eclipse Plugin.
Most importantly: It runs in Windows or Linux. I haven't tested it on a Mac but I don't know of any reason it wouldn't work.
12-01-2011 03:58 AM
12-01-2011 09:11 PM
I made the Hello World a few months back so it likely doesn't work. You may want to look at some of the projects under the src/test/resources/projects directory. This weekend I'll take a pass at getting some better examples out there.
12-01-2011 11:30 PM
I haven't looked at hello-world but I got the advanced fields example building. Checkout svn://goodformobile.com/maven-plugin/tru
<profile>
<id>rim-6.0.0</id>
<properties>
<rim.platform>rim-6.0.0</rim.platform>
<rim.jar.version>6.0.0.30</rim.jar.version>
<jde.directory>C:\\tools\\eclipse\\eclipse-rim-3.0
<preverify.path>C:\tools\j2me\WTK2.5.2\bin\preveri
<signature.path>C:\tools\rim\signatureTool</signat
</properties>
</profile>
And run:
mvn clean install -P rim-6.0.0 -Drim.platform=rim-6.0.0
12-02-2011 04:25 AM