I've tried to set wait timeout but receive the following error:
[ERROR] Failed to execute goal io.brachu:docker-compose-maven-plugin:0.11.0:up (default) on project pund-espis-rest-server: Unable to parse configuration of mojo io.brachu:docker-compose-maven-plugin:0.11.0:up for parameter wait: Cannot find default setter in class io.brachu.docker.compose.plugin.WaitConfig -> [Help 1]
Configuration is:
<plugin>
<groupId>io.brachu</groupId>
<artifactId>docker-compose-maven-plugin</artifactId>
<version>${docker-compose-plugin.version}</version>
<configuration>
<workDir>src/test/resources</workDir>
<followLogs>true</followLogs>
<wait>2 minutes</wait>
</configuration>
<executions>
<execution>
<goals>
<goal>up</goal>
<goal>down</goal>
</goals>
</execution>
</executions>
</plugin>
How to I set up wait interval?
I've tried to set wait timeout but receive the following error:
[ERROR] Failed to execute goal io.brachu:docker-compose-maven-plugin:0.11.0:up (default) on project pund-espis-rest-server: Unable to parse configuration of mojo io.brachu:docker-compose-maven-plugin:0.11.0:up for parameter wait: Cannot find default setter in class io.brachu.docker.compose.plugin.WaitConfig -> [Help 1]Configuration is:
How to I set up wait interval?