Maven: The Complete Reference - 14.9. Plugin Configuration Parameters |
|
The Android Maven Plugin supports a large number of configuration parameters. They can typically be passed into the execution as plugin configuration, as properties defined in the pom or settings file or as command line parameters. An example of a plugin configuration. <configuration> <sdk> <platform>2.1</platform> </sdk> <emulator> <avd>21</avd> <options>-no-skin</options> </emulator> </configuration>
Configuration as properties in pom.xml. <properties> <android.emulator.avd>21</android.emulator.avd> <properties>
Configuration on command line invocation. mvn android:emulator-start -Dandroid.emulator.avd=21
A number of other parameters have defaults that point to the default location as used by the standard Android/Eclipse project layout, but can be customized if desired.
Some of the other useful parameters are
|