Full name:
ca.mestevens.ios:xcode-maven-plugin:0.9.1:xcode-package-app
Description:
Attributes:
| Name | Type | Since | Description |
|---|---|---|---|
| bundleId | String | - | The bundle id of your application. This is required. User property is: xcode.project.bundle.id. |
| deviceAppPath | String | - | The path to your .app file created by the build mojo. Defaults to
"${project.build.directory}/build/${project.artifactId}.app". Default value is: ${project.build.directory}/build/iPhone/${project.artifactId}.app. User property is: xcode.project.device.app.path. |
| simulatorAppPath | String | - | The path to your .app file created by the build mojo. Defaults to
"${project.build.directory}/build/${project.artifactId}.app". Default value is: ${project.build.directory}/build/iPhone-simulator/${project.artifactId}.app. User property is: xcode.project.simulator.app.path. |
| xcrun | String | - | The path to your xcrun command. This defaults to /usr/bin/xcrun." Default value is: /usr/bin/xcrun. User property is: xcode.project.xcrun.path. |
| Name | Type | Since | Description |
|---|---|---|---|
| buildDevice | boolean | - | Property to determine whether or not to build for device. Default value is: true. User property is: xcode.project.build.device. |
| buildSimulator | boolean | - | Property to determine whether or not to build for the simulator. Default value is: true. User property is: xcode.project.build.simulator. |
| deploy | boolean | - | A flag to determine whether or not you want to deploy your .app to
the simulator and run it. Default value is: false. User property is: xcode.project.deploy. |
| deployDevice | String | - | The simulator to deploy to, usually takes the form of something
like "iPhone Default value is: iPhone 6 (8.1 Simulator). User property is: xcode.project.simulator.name. |
| ipaName | String | - | The name of the ipa file you want to create. Defaults to
${project.artifactId}.ipa. Default value is: ${project.artifactId}.ipa. User property is: xcode.project.ipa.name. |