Hi guys,
i’m trying to use a custom chamelon containers.yaml file which is a copy of the default one where I only changed gav, you can see it here.
I’ve got the error below:
org.jboss.arquillian.container.spi.ConfigurationException: jbossHome ‘C:projetossoewstargetserverjboss-eap-dist_6.3.4.Final.jboss-eap-dist-6.3.4.Final’ must exist
at org.jboss.arquillian.container.spi.client.deployment.Validate.configurationDirectoryExists(Validate.java:139)
at org.jboss.as.arquillian.container.DistributionContainerConfiguration.validate(DistributionContainerConfiguration.java:103)
here is my arquillian.xml:
<container qualifier="chameleon" default="true">
<configuration>
<property name="chameleonTarget">jboss:6.3.4.Final:${arquillian.containerMode}</property>
<property name="chameleonContainerConfigurationFile">/containers.yaml</property>
</configuration>
</container>
I need to use target folder so I can run on CI where i don’t have privileges to create folders.
I see in the containers.yaml use a ${dist} property for jbossHome but I have no idea how to set this value.