Maven build & launch without signing

Hi.

We are trying to test our library on iOS and execute these tests on a Hudson continuous integration server. However our build fails on missing signing credentials. How shall we reconfigure our project to work only with simulator (where no signing is needed)?

                <plugin>
                    <groupId>org.multi-os-engine</groupId>
                    <artifactId>moe-maven</artifactId>
                    <version>${moe.version}</version>
                    <executions>
                        <execution>
                            <id>it</id>
                            <phase>verify</phase>
                            <goals>
                                <goal>launch</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>

In other words: how can we skip building the official ARM and ARM64 binaries and launch only on simulator? Thanks for any hints.

Seal

Btw. RoboVM Maven plugin can do that with robovm:ipad-sim - what would achieve the same in MOE Maven plugin?

Hi!

You need following pom configuration:


	...
	
		Simulator Identifier
	
	...

Best Regards,
Roland

Thanks, that seems to help, once I get an identifier via mvn moe:listSimulators - but that isn’t easy to automate in headless mode. Isn’t there a way to say: use any simulator?

Thanks in advance for your help.
Seal